Examples of resolveReference()


Examples of org.jfree.formula.FormulaContext.resolveReference()

  }

  public TypeValuePair evaluate() throws EvaluationException
  {
    final FormulaContext context = getContext();
    final Object value = context.resolveReference(name);
    final Type type = context.resolveReferenceType(name);
    return new TypeValuePair(type, value);
  }

View Full Code Here

Examples of org.mule.config.builders.ContainerReference.resolveReference()

    protected void setContainerProperties() throws ContainerException {
        UMOContainerContext ctx = container.getObjectContainer();
        try {
            for (Iterator iterator = containerReferences.iterator(); iterator.hasNext();) {
                ContainerReference reference = (ContainerReference) iterator.next();
                reference.resolveReference(ctx);
            }
        } finally {
            containerReferences.clear();
        }
    }
View Full Code Here

Examples of org.pentaho.reporting.libraries.formula.FormulaContext.resolveReference()

  public TypeValuePair evaluate() throws EvaluationException
  {
    final FormulaContext context = getContext();
    final Type type = context.resolveReferenceType(name);
    final Object value = context.resolveReference(name);
    if (value == null)
    {
      throw EvaluationException.getInstance(LibFormulaErrorValue.ERROR_NA_VALUE);
    }
    return new TypeValuePair(type, value);
View Full Code Here

Examples of org.springframework.web.context.request.FacesRequestAttributes.resolveReference()

     * @see org.springframework.beans.factory.config.Scope#resolveContextualObject(java.lang.String)
     */
    public Object resolveContextualObject(String name) {
        FacesContext facesContext = FacesContext.getCurrentInstance();
        FacesRequestAttributes facesRequestAttributes = new FacesRequestAttributes(facesContext);
        return facesRequestAttributes.resolveReference(name);
    }

    /* (non-Javadoc)
     * @see org.springframework.beans.factory.config.Scope#getConversationId()
     */
 
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.