Package org.codehaus.janino

Examples of org.codehaus.janino.ExpressionEvaluator


  @Override
  public void start() {
    try {
      assert context != null;
      ClassLoader cl = context.getClass().getClassLoader();
      ee = new ExpressionEvaluator(getDecoratedExpression(), EXPRESSION_TYPE,
          getParameterNames(), getParameterTypes(), THROWN_EXCEPTIONS, cl);
      super.start();
    } catch (Exception e) {
      addError(
          "Could not start evaluator with expression [" + expression + "]", e);
View Full Code Here


                  + " - null value passed as argument, cannot detect class so using Object.class");
          parameterTypes[i] = Object.class;
        }
        i++;
      }
      expressionEvaluator = new ExpressionEvaluator(expression,
          expressionType, parameterNames, parameterTypes);
    }
  }
View Full Code Here

        init(RestxMainRouterFactory.newInstance(serverId, baseUri));
    }

    @SuppressWarnings("unchecked")
    protected Collection<String> getMappings(ServletConfig config) throws CompileException, InvocationTargetException {
        ExpressionEvaluator expressionEvaluator = new ExpressionEvaluator(
                "config.getServletContext().getServletRegistration(config.getServletName()).getMappings()",
                Collection.class,
                new String[]{"config"},
                new Class[]{ServletConfig.class});
        return (Collection<String>) expressionEvaluator.evaluate(new Object[]{config});
    }
View Full Code Here

TOP

Related Classes of org.codehaus.janino.ExpressionEvaluator

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.