Package net.sf.laja.template

Examples of net.sf.laja.template.Stringref


    return new NullData();
  }

  @Override
  public IStringref createStringref() {
    return new Stringref(source);
  }
View Full Code Here


  public void addText(String text) {
    expression.add(new TextAdapter(text));
  }
 
  public void addStringref(IStringref istringref) {
    Stringref stringref = (Stringref)istringref;
    if (stringref.getDirectory() != null) {
      expression.add(new TextAdapter(stringref.getDirectory()));
    } else {
      expression.add(stringref.getReference());
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.laja.template.Stringref

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.