Examples of FLRFile


Examples of com.uic.ase.proj.xbn.util.FLRFile

    @return  <CODE><A HREF="~JD~getJDCAFromFLR(flr)~EJD~">getJDCAFromFLR</A>(new <A HREF="~JD~flrf~EJD~">FLRFile</A>(s_mapFile))</CODE>
   **/
  public final JDCArray getJDCAFromMapFile(String s_mapFile)  {
    throwAXIfBadStr(s_mapFile, "s_mapFile", "getJDCAFromMapFile");

    return getJDCAFromFLR(new FLRFile(s_mapFile));
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.util.FLRFile

      int j = 0;

      String sPath = fThis.getPath();

      FLRFile flrf = new FLRFile(sPath);
      ForLineRetrieval flrJDLC = null;
      ForLineRetrieval flrSCL = null;

      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)  {
          flrJDLC = flrf;
        }

        if(s_relUrlJDToCodeBases != null)  {
          if(jdc_array == null)  {
            flrSCL = new FLRFile(sPath);
          else  {
            flrSCL = flrf;
          }
        }
      }
View Full Code Here

Examples of com.uic.ase.proj.xbn.util.FLRFile

    <P>Create a GetTOG2FFile.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog2f#gtog2f(s,flr,ogc2,gc,optr)~EJD~">GetTOG2From</A>(s_templateName, s_fileName, ogc_two, gap_config, optr_dbg)</CODE></P>
   **/
  public GetTOG2FFile(String s_templateName, String s_fileName, OGCTwo ogc_two, GapConfig gap_config, Outputter optr_dbg)  {
    super(s_templateName, (new FLRFile(s_fileName)), ogc_two, gap_config, optr_dbg);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.util.FLRFile

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

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

Examples of com.uic.ase.proj.xbn.util.FLRFile

    <P>Create a GetTOG3FFile.</P>

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

Examples of com.uic.ase.proj.xbn.util.FLRFile

    <P>Create a GetTOG1FFile.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog1f#gtog1f(s,flr,ogc1,gc,optr)~EJD~">GetTOG1From</A>(s_templateName, s_fileName, ogc_one, gap_config, optr_dbg)</CODE></P>
   **/
  public GetTOG1FFile(String s_templateName, String s_fileName, OGCOne ogc_one, GapConfig gap_config, Outputter optr_dbg)  {
    super(s_templateName, (new FLRFile(s_fileName)), ogc_one, 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.