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

17 lines
262 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree.statement;
2016-09-20 13:18:13 +00:00
2017-02-10 16:37:42 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
2013-10-18 11:33:46 +00:00
2016-09-20 13:18:13 +00:00
public abstract class Statement extends Executeable
2013-10-18 11:33:46 +00:00
{
2017-02-10 16:37:42 +00:00
public Statement(RefTypeOrTPH type, int offset)
2013-10-18 11:33:46 +00:00
{
2016-09-20 13:18:13 +00:00
super(type,offset);
2013-10-18 11:33:46 +00:00
}
2015-06-16 09:55:15 +00:00
2016-09-20 13:18:13 +00:00
}