summaryrefslogtreecommitdiffstats
path: root/src/syntaxParser/FieldInterpolationElement.java
blob: 28ab51fcf440078fc0655817cc1abd6f3e86f62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package syntaxParser;
/* Authod: Sorin Stancu-Mara
 * Date: 8 Feb 2008
 */

class FieldInterpolationElement implements IParseTreeNode {
	String field;
	FieldInterpolationMethod method;

	public FieldInterpolationElement(String field, FieldInterpolationMethod m) {
		this.field = field;
		this.method = m;
	}

	public String toXML() {
		return "<field>" + field + "</field>" + method.toXML();
	}
}