Examples of TLAObjects


Examples of com.uic.ase.proj.xbn.template.TLAObjects

    <P>Equal to <CODE><A HREF="~JD~tla(s,i,sb,tlao)~EJD~">TemplateLineAnalyzer</A>(s_templateName, i_lineNumber, sb_line, (new <A HREF="~JD~tlao#tlao(tpc)~EJD~">TLAObjects</A>(tp_config))</CODE></P>

    <P>This constructor is intended for testing purposes only.  When using this class for real, it is recommended that you use the <A HREF="~JD~tlao#tlao(tpc)~EJD~">TLAObjects version</A> of this class' constructors.</P>
   **/
  public TemplateLineAnalyzer(String s_templateName, int i_lineNumber, StringBuffer sb_line, TParseConfig tp_config) throws TemplateFormatException  {
    this(s_templateName, i_lineNumber, sb_line, (new TLAObjects(tp_config)));
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.template.TLAObjects

    VWString acsSurroundingText = new VWString();
    StringBuffer sbCurrentSurrText = new StringBuffer(sES);
    AOSLCreator aoslc = new AOSLCreator();

    TLAObjects tlao = new TLAObjects(tp_config);

    while(for_lineRetrieval.hasMoreLines())  {
      StringBuffer sbLine = for_lineRetrieval.getNextLine();
      TemplateLineAnalyzer tla = new TemplateLineAnalyzer(getName(), for_lineRetrieval.getLineNumberPrev(), sbLine, tlao);
View Full Code Here

Examples of com.uic.ase.proj.xbn.template.TLAObjects

    <P>The object is created each time this function is called.</P>

    @param  optr_dbg  The Outputter for debugging output.  May not be null.
   **/
  public final TLAObjects getTLAOForGJL(Outputter optr_dbg)  {
    return (new TLAObjects(
      new TParseConfig(
        new GapConfig(getJDLinkGapTextStart(), getJDLinkGapTextEnd()),
        true, optr_dbg)));
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.template.TLAObjects

    <P>Given the provided line of Javadoc, return the same line with all JavaDoc Link Codes translated to actual urls.</P>

    <P>Equal to <CODE><A HREF="~JD~getJavadocLine(s,jdf,jdca,b,b,tlao)~EJD~">getJavadocLine</A>(s_line, jdf_current, jdc_array, b_cibJDLCTarget, b_ignoreIndirectJDLCs, (new <A HREF="~JD~tlao#tlao()~EJD~">TLAObjects</A>()))</CODE></P>
   **/
  public String getJavadocLine(String s_line, JDFile jdf_current, JDCArray jdc_array, boolean b_cibJDLCTarget, boolean b_ignoreIndirectJDLCs) throws TemplateFormatException  {
    return getJavadocLine(s_line, jdf_current, jdc_array, b_cibJDLCTarget, b_ignoreIndirectJDLCs, (new TLAObjects()));
  }
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.