Package org.formulacompiler.compiler.internal

Examples of org.formulacompiler.compiler.internal.DescriptionBuilder


   *
   * @return cell or range name without $ symbols.
   */
  public String getShortName()
  {
    DescriptionBuilder description = new DescriptionBuilder();
    description.pushContext( DescribeShortStyle.getInstance() );
    describeTo( description );
    return description.toString();
  }
View Full Code Here


    }
  }

  public final String getContext( ExpressionNode _focusedNode )
  {
    final DescriptionBuilder builder = new DescriptionBuilder();
    buildContext( builder, _focusedNode );
    return builder.toString();
  }
View Full Code Here


  @Override
  public String toString()
  {
    DescriptionBuilder description = new DescriptionBuilder();
    description.pushContext( DescribeShortStyle.getInstance() );
    describeTo( description );
    return description.toString();
  }
View Full Code Here

TOP

Related Classes of org.formulacompiler.compiler.internal.DescriptionBuilder

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.