Examples of FLRString


Examples of com.uic.ase.proj.xbn.string.FLRString

      stripSLCs(sob_sb, sSLASH + sSLASH);
      //Same with the multi-line comment delimiter.
      stripMLCs(sob_sb, sSLASH + "*", "*" + sSLASH);
      util_sob.replaceUntil(sob_sb, sLINE_SEP + sLINE_SEP, sLINE_SEP);

      FLRString flrs = new FLRString(sob_sb.getStringBuffer());

      while(flrs.hasMoreLines())  {
        SOBStringBuffer ssbLine = new SOBStringBuffer(flrs.getNextLine());
        ssbLine.trim();
        if(ssbLine.length() < ||  ssbLine.startsWith("package"))  {
          continue;
        }

View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

    @param  b_ignoreIndirectJDLCs  Passed directly to the SplitLinkCode <A HREF="~JD~slc#slc(s)~EJD~">constructor</A>.
    @param  tla_objects  The TLAObjects provided directly to the <A HREF="~JD~tla~EJD~">TemplateLineAnalyzer</A> <A HREF="~JD~tla#tla(s,i,sb,tlao)~EJD~">constructor</A>.  May not be null.  This also contains the Outputter used for debugging output.  See <A HREF="~JD~getTLAOForGJL(optr)~EJD~">getTLAOForGJL</A>.
   **/
  public final String getJavadocLine(String s_line, JDFile jdf_current, JDCArray jdc_array, boolean b_cibJDLCTarget, boolean b_ignoreIndirectJDLCs, TLAObjects tla_objects) throws TemplateFormatException  {
    StringBuffer sbOutput = new StringBuffer(sES);
    FLRString flrsLine = new FLRString(s_line);

    while(flrsLine.hasMoreLines())  {
      StringBuffer sbLine = flrsLine.getNextLine();
      TemplateLineAnalyzer tla = new TemplateLineAnalyzer(null, flrsLine.getLineNumberPrev(), sbLine, tla_objects);

      if(!tla.isDoneAnalyzing())  {
        while(tla.hasAnotherGap())  {
          s_s ss = tla.getNextSurrTxtAndGap();
          sbOutput.append(ss.s1);
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

      if(sPath.endsWith(".java"))  {
        StringBuffer sbJDText = getJDTextFromJava(flrf);

        if(jdc_array != null)  {
          flrJDLC = new FLRString(sbJDText);
        }

        if(s_relUrlJDToCodeBases != null)  {
          //Must duplicate sbJDText!!!
          flrSCL = new FLRString(new StringBuffer(sbJDText.toString()));
        }

      }  else  {

        if(jdc_array != null)  {
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

    <P>Create a GetTOG3FString.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog3f#gtog3f(s,flr,ogc3,gc,optr)~EJD~">GetTOG3From</A>(s_templateName, s_srcTxt, ogc_three, gap_config, optr_dbg)</CODE></P>
   **/
  public GetTOG3FString(String s_templateName, String s_srcTxt, OGCThree ogc_three, GapConfig gap_config, Outputter optr_dbg)  {
    super(s_templateName, (new FLRString(s_srcTxt)), ogc_three, gap_config, optr_dbg);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

    <P>Create a Template from source text.</P>

    <P>Equal to <CODE><A HREF="~JD~gtf#gtf(s,flr,gc,optr,tfltr)~EJD~">GetTemplateFrom</A>(s_templateName, (new <A HREF="~JD~flrs#flrs(s)~EJD~">FLRString</A>(s_srcTxt)), gap_config, optr_dbg, template_filter)</CODE></P>
   **/
  public GetTFString(String s_templateName, String s_srcTxt, GapConfig gap_config, Outputter optr_dbg, TFilter template_filter)  {
    super(s_templateName, (new FLRString(s_srcTxt)), gap_config, optr_dbg, template_filter);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

    <P>Create a GetTOG1FString.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog1f#gtog1f(s,flr,ogc1,gc,optr)~EJD~">GetTOG1From</A>(s_templateName, s_srcTxt, ogc_one, gap_config, optr_dbg)</CODE></P>
   **/
  public GetTOG1FString(String s_templateName, String s_srcTxt, OGCOne ogc_one, GapConfig gap_config, Outputter optr_dbg)  {
    super(s_templateName, (new FLRString(s_srcTxt)), ogc_one, gap_config, optr_dbg);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

      throwAX("getFilledXGapsTString:  as_fillText.length (" + as_fillText.length + ") must equal i_rqdUniqueGaps (" + i_rqdUniqueGaps + ").");
    }

    TemplateDataOrString tdos = null;
    try  {
      tdos = new TemplateDataOrString(new FLRString(s_templateWithXGaps));
    catch(TemplateFormatException tfx)  {
      throwAX("getFilledXGapsTString:  " + tfx.toString());
    }

    if(tdos.isString())  {
View Full Code Here

Examples of com.uic.ase.proj.xbn.string.FLRString

    <P>Create a GetTOG2FString.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog2f#gtog2f(s,flr,ogc2,gc,optr)~EJD~">GetTOG2From</A>(s_templateName, s_srcTxt, ogc_two, gap_config, optr_dbg)</CODE></P>
   **/
  public GetTOG2FString(String s_templateName, String s_srcTxt, OGCTwo ogc_two, GapConfig gap_config, Outputter optr_dbg)  {
    super(s_templateName, (new FLRString(s_srcTxt)), ogc_two, gap_config, optr_dbg);
  }
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.