Examples of INavigationStrategy


Examples of net.sf.lapg.templates.api.INavigationStrategy

    factory.setEvaluationStrategy(this);
  }

  @SuppressWarnings("unchecked")
  public Object callMethod(Object obj, String methodName, Object[] args) throws EvaluationException {
    INavigationStrategy strategy = navigationFactory.getStrategy(obj);
    return strategy.callMethod(obj, methodName, args);
  }
View Full Code Here

Examples of net.sf.lapg.templates.api.INavigationStrategy

    return strategy.callMethod(obj, methodName, args);
  }

  @SuppressWarnings("unchecked")
  public Object getByIndex(Object obj, Object index) throws EvaluationException {
    INavigationStrategy strategy = navigationFactory.getStrategy(obj);
    return strategy.getByIndex(obj, index);
  }
View Full Code Here

Examples of net.sf.lapg.templates.api.INavigationStrategy

    return strategy.getByIndex(obj, index);
  }

  @SuppressWarnings("unchecked")
  public Object getProperty(Object obj, String id) throws EvaluationException {
    INavigationStrategy strategy = navigationFactory.getStrategy(obj);
    return strategy.getProperty(obj, id);
  }
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.