home *** CD-ROM | disk | FTP | other *** search
- package koala.dynamicjava.tree;
-
- public abstract class Allocation extends PrimaryExpression {
- public static final String CREATION_TYPE = "creationType";
- private Type creationType;
-
- public Type getCreationType() {
- return this.creationType;
- }
-
- public void setCreationType(Type var1) {
- if (var1 == null) {
- throw new IllegalArgumentException("t == null");
- } else {
- ((Node)this).firePropertyChange("creationType", this.creationType, this.creationType = var1);
- }
- }
-
- protected Allocation(Type var1, String var2, int var3, int var4, int var5, int var6) {
- super(var2, var3, var4, var5, var6);
- if (var1 == null) {
- throw new IllegalArgumentException("tp == null");
- } else {
- this.creationType = var1;
- }
- }
- }
-