1 19 20 package org.netbeans.modules.xml.xpath.impl; 21 22 import org.netbeans.modules.xml.xpath.XPathLiteral; 23 24 29 public class XPathLiteralImpl extends XPathExpressionImpl implements XPathLiteral { 30 31 private Object mLiteral; 32 33 public XPathLiteralImpl(Object literal) { 34 this.mLiteral = literal; 35 } 36 37 public String getStringForm() { 38 if(this.mLiteral != null) { 39 return this.mLiteral.toString(); 40 } 41 42 return "literal string form is not available"; 43 } 44 45 46 } 47 | Popular Tags |