projects
/
PL2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Acceso a clase
[PL2.git]
/
Auxiliar.java
1
import java.util.Hashtable;
2
3
4
public class Auxiliar {
5
Tabla_Global t = null;
6
Hashtable<String,String> declaraciones = null;
7
8
public Auxiliar(Tabla_Global t, Hashtable<String,String> declaraciones) {
9
this.t = t;
10
this.declaraciones = declaraciones;
11
}
12
13
14
}