blob: da54fea64d963f1d695e51314fd74feb6247eac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package syntaxParser;
/**
* InterpMethod
* Creation date: (3/3/2003 2:28:43 AM)
* @author: mattia parigiani, Sorin Stancu-Mara
*/
class FieldInterpolationMethod implements IParseTreeNode {
String type;
String nullresistence;
public FieldInterpolationMethod(String type, String nr ) {
this.type = type;
nullresistence = nr;
}
public String toXML(){
return "<interpolationMethod>" + type + "</interpolationMethod>" +
"<nullResistence>" + nullresistence + "</nullResistence>";
}
}
|