Examples of TParseConfig


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

    <P>Create an TemplateLineAnalyzer.</P>

    <P>Equal to <CODE><A HREF="~JD~tla(s,i,sb,tpc)~EJD~">TParseConfig</A>(s_templateName, i_lineNumber, sb_line, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()))</CODE></P>
   **/
  public TemplateLineAnalyzer(String s_templateName, int i_lineNumber, StringBuffer sb_line) throws TemplateFormatException  {
    this(s_templateName, i_lineNumber, sb_line, (new TParseConfig()));
  }
View Full Code Here

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

    <P>Create a TOGOne.</P>

    <P>Equal to <CODE><A HREF="~JD~tog1(s,flr,ogc1,tpc)~EJD~">TOGOne</A>(s_name, flr_srcTxt, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()), ogc_one)</CODE></P>
   **/
  public TOGOne(String s_name, ForLineRetrieval flr_srcTxt, OGCOne ogc_one) throws TemplateFormatException  {
    this(s_name, flr_srcTxt, ogc_one, (new TParseConfig()));
  }
View Full Code Here

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

    <P>Create a TemplateOrderedGaps.</P>

    <P>Equal to <CODE><A HREF="~JD~tog(s,flr,ogc,tpc)~EJD~">TemplateOrderedGaps</A>(s_name, flr_srcTxt, og_config, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()))</CODE></P>
   **/
  public TemplateOrderedGaps(String s_name, ForLineRetrieval flr_srcTxt, OGConfig og_config) throws TemplateFormatException  {
    this(s_name, flr_srcTxt, og_config, (new TParseConfig()));
  }
View Full Code Here

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

    <P>Create a TemplateDataOrString.</P>

    <P>Equal to <CODE><A HREF="~JD~tdos(flr,tpc)~EJD~">TemplateDataOrString</A>(for_lineRetrieval, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()))</CODE></P>
   **/
  public TemplateDataOrString(ForLineRetrieval for_lineRetrieval) throws TemplateFormatException  {
    this(for_lineRetrieval, (new TParseConfig()));
  }
View Full Code Here

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

    @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.TParseConfig

    @param  optr_dbg  The Outputter to use for debugging while parsing the file text.  May not be null.  This value is passed directly to the TParseConfig constructor.
    @param  template_filter  The TFilter to validate the integrity of the retrieved Template.  This value is passed directly to the Template constructor.
    @exception  AssertException  If an AssertException or TemplateFormatException are thrown, for any reason, by either the TParseConfig or Template constructors.
   **/
  public GetTemplateFrom(String s_templateName, ForLineRetrieval flr_srcTxt, GapConfig gap_config, Outputter optr_dbg, TFilter template_filter)  {
    TParseConfig tpc = null;
    try  {
      tpc = new TParseConfig(gap_config, optr_dbg);
    catch(AssertException ax)  {
      throwAX("getTemplateFrom.  Attempting to [new TParseConfig(gap_config, optr_dbg)]:  " + ax.toString());
    }

    t = createTemplate(s_templateName, flr_srcTxt, tpc, template_filter);
View Full Code Here

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

  String sTagDelimiter = null;
  String sTagStart = null;
  String sTagEnd = null;

  public TLAObjects()  {
    this(new TParseConfig());
  }
View Full Code Here

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

    <P>Create a TOGTwo.</P>

    <P>Equal to <CODE><A HREF="~JD~tog2(s,flr,ogc2,tpc)~EJD~">TOGTwo</A>(s_name, flr_srcTxt, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()), ogc_two)</CODE></P>
   **/
  public TOGTwo(String s_name, ForLineRetrieval flr_srcTxt, OGCTwo ogc_two) throws TemplateFormatException  {
    this(s_name, flr_srcTxt, ogc_two, (new TParseConfig()));
  }
View Full Code Here

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

    throwAXIfNull(gap_config, "gap_config", "getAOSUniqueGapNames");
    throwAXIfNull(optr_dbg, "optr_dbg", "getAOSUniqueGapNames");

    TemplateDataOrString tdos = null;
    try  {
      tdos = new TemplateDataOrString(null, flr_srcTxt, (new TParseConfig(gap_config, true, optr_dbg)));
    catch(AssertException ax)  {
      throwAX("getAOSUniqueGapNames:  Attempting to create a TemplateDataOrString:  " + ax.toString());
    catch(TemplateFormatException tfx)  {
      throwAX("getAOSUniqueGapNames:  Attempting to create a TemplateDataOrString:  " + tfx.toString());
    }
View Full Code Here

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

    <P>Create a Template.</P>

    <P>Equal to <CODE><A HREF="~JD~t(s,flr,tpc)~EJD~">Template</A>(s_name, flr_srcTxt, (new <A HREF="~JD~tpc#tpc()~EJD~">TParseConfig</A>()))</CODE></P>
   **/
  public Template(String s_name, ForLineRetrieval flr_srcTxt) throws TemplateFormatException  {
    this(s_name, flr_srcTxt, (new TParseConfig()));
  }
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.