Examples of ExpressionHelper


Examples of org.apache.ivory.expression.ExpressionHelper

  }

  @Override
  public long getDelay(Frequency delay, Date nominalTime, Date cutOffTime)
      throws IvoryException {
    ExpressionHelper evaluator = ExpressionHelper.get();
    Date now = new Date();
    Date lateTime = nominalTime;
    long delayMilliSeconds = evaluator.evaluate(delay.toString(),
        Long.class);
    int factor = 1;
    // TODO we can get rid of this using formula
    while (lateTime.compareTo(now)<=0) {
      lateTime = addTime(lateTime, (int) (factor * delayMilliSeconds));
 
View Full Code Here

Examples of org.apache.ivory.expression.ExpressionHelper

public abstract class AbstractRerunPolicy {

  public long getDurationInMilliSec(Frequency frequency)
      throws IvoryException {
    ExpressionHelper helper = ExpressionHelper.get();
    return helper.evaluate(frequency.toString(), Long.class);

  }
View Full Code Here

Examples of org.intellij.grammar.generator.ExpressionHelper

  }

  public ProblemDescriptor[] checkFile(@NotNull PsiFile file, @NotNull InspectionManager manager, boolean isOnTheFly) {
    if (file instanceof BnfFile) {
      BnfFile bnfFile = (BnfFile)file;
      ExpressionHelper expressionHelper = ExpressionHelper.getCached(bnfFile);
      BnfFirstNextAnalyzer analyzer = new BnfFirstNextAnalyzer();
      ArrayList<ProblemDescriptor> list = new ArrayList<ProblemDescriptor>();
      for (BnfRule rule : bnfFile.getRules()) {
        String ruleName = rule.getName();
        boolean exprParsing = ExpressionGeneratorHelper.getInfoForExpressionParsing(expressionHelper, rule) != null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.