Package com.codingcrayons.aspectfaces.el

Examples of com.codingcrayons.aspectfaces.el.AFContext


  public StringBuilder resolve(String tagName, StringBuilder input, String startBoundary, String endBoundary,
                 List<Variable> localVars) throws TagParserException {

    // fill in all variables
    AFContext variableContext = ELUtil.makeExtendedVariableContext(localVars);
    LexicalAnalyser la = new LexicalAnalyser(input, startBoundary, endBoundary);
    StringBuilder out = new StringBuilder();
    try {
      do {
        la.readSymbol();
View Full Code Here


    return name;
  }

  public String getTagPath(MetaProperty property, Context context) {
    List<Variable> localVars = Collections.concatLists(context.getVariableList(), property.getConfigVariables());
    AFContext variableContext = ELUtil.makeVariableContext(localVars);

    for (Guard guard : this.guards) {
      if (guard.evaluate(property, context, variableContext)) {
        return guard.getTagPath();
      }
View Full Code Here

TOP

Related Classes of com.codingcrayons.aspectfaces.el.AFContext

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.