JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/statement/NewClass.java

35 lines
888 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2016-05-23 22:36:59 +00:00
import java.util.ArrayList;
import java.util.List;
2017-02-10 16:37:42 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
2017-03-06 16:59:01 +00:00
import de.dhbwstuttgart.typeinference.ConstraintSet;
import de.dhbwstuttgart.typeinference.Pair;
import de.dhbwstuttgart.typeinference.TypeInferenceInformation;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
2013-10-18 11:33:46 +00:00
2017-03-06 16:59:01 +00:00
public class NewClass extends Statement
2013-10-18 11:33:46 +00:00
{
public NewClass(int offset,int variableLength)
{
super(null,null);
2013-10-18 11:33:46 +00:00
}
private ArgumentList arglist;
2015-11-06 17:27:47 +00:00
private boolean isStatement = false;
2017-02-10 16:37:42 +00:00
private List<RefTypeOrTPH> parameterList = new ArrayList<>();
2013-10-18 11:33:46 +00:00
public ArgumentList getArgumentList()
{
return this.arglist;
}
2017-03-06 16:59:01 +00:00
@Override
public ConstraintSet getConstraints(TypeInferenceInformation info) {
throw new NotImplementedException();
}
2013-10-18 11:33:46 +00:00
}