JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/FormalParameter.java

16 lines
335 B
Java
Raw Normal View History

2014-09-02 08:33:54 +00:00
package de.dhbwstuttgart.syntaxtree;
2013-10-18 11:33:46 +00:00
2017-02-10 16:37:42 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
2016-12-02 00:23:01 +00:00
public class FormalParameter extends SyntaxTreeNode
2013-10-18 11:33:46 +00:00
{
2017-02-10 16:37:42 +00:00
private RefTypeOrTPH type;
private String name;
2013-10-18 11:33:46 +00:00
2017-02-10 16:37:42 +00:00
public FormalParameter(String name, RefTypeOrTPH type, int offset){
this.name = name;
this.type = type;
}
2013-10-18 11:33:46 +00:00
}