Examples of GapConfig


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

    <P>Create a TParseConfig.</P>

    <P>Equal to <CODE><A HREF="~JD~tpc(gc,b)~EJD~">TParseConfig</A>((new <A HREF="~JD~gc#gc()~EJD~">GapConfig</A>()), b_ignoreSurrTxt)</CODE></P>
   **/
  public TParseConfig(boolean b_ignoreSurrTxt)  {
    this((new GapConfig()), b_ignoreSurrTxt);
  }
View Full Code Here

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

    <P>Create a TParseConfig.</P>

    <P>Equal to <CODE><A HREF="~JD~tpc(gc,b,usci)~EJD~">TParseConfig</A>((new <A HREF="~JD~gc#gc()~EJD~">GapConfig</A>()), b_ignoreSurrTxt, euscu_ignore)</CODE></P>
   **/
  public TParseConfig(boolean b_ignoreSurrTxt, USCIgnore euscu_ignore)  {
    this((new GapConfig()), b_ignoreSurrTxt, euscu_ignore);
  }
View Full Code Here

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

    <P>Create a TParseConfig.</P>

    <P>Equal to <CODE><A HREF="~JD~tpc(gc,b,optr)~EJD~">TParseConfig</A>((new <A HREF="~JD~gc#gc()~EJD~">GapConfig</A>()), b_ignoreSurrTxt, optr_dbg)</CODE></P>
   **/
  public TParseConfig(boolean b_ignoreSurrTxt, Outputter optr_dbg)  {
    this((new GapConfig()), b_ignoreSurrTxt, optr_dbg);
  }
View Full Code Here

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

    <P>Create a TParseConfig.</P>

    <P>Equal to <CODE><A HREF="~JD~tpc(gc,b,usci,optr)~EJD~">TParseConfig</A>((new <A HREF="~JD~gc#gc()~EJD~">GapConfig</A>()), b_ignoreSurrTxt, euscu_ignore, optr_dbg)</CODE></P>
   **/
  public TParseConfig(boolean b_ignoreSurrTxt, USCIgnore euscu_ignore, Outputter optr_dbg)  {
    this((new GapConfig()), b_ignoreSurrTxt, euscu_ignore, optr_dbg);
  }
View Full Code Here

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

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

        //Analyze Javadoc Link Codes.

        try  {
          i_i ii = uTemplate.addUnqGapNamesToACS(acs_uniqueGapNames,
            flrJDLC,
            new GapConfig(getJDLinkGapTextStart(), getJDLinkGapTextEnd()),
            (new Outputter()));

          iUniqueJDLCs += ii.i1;
          iAbsoluteJDLCs += ii.i2;
View Full Code Here

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

    <P>Create a GetTOG3FString.</P>

    <P>Equal to <CODE><A HREF="~JD~gtog3fs#gtog3fs(s,s,ogc3,gc)~EJD~">GetTOG3FString</A>(s_templateName, s_srcTxt, ogc_three)</CODE></P>
   **/
  public GetTOG3FString(String s_templateName, String s_srcTxt, OGCThree ogc_three)  {
    this(s_templateName, s_srcTxt, ogc_three, (new GapConfig()));
  }
View Full Code Here

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

    <P>Create a GetTOG3FString.</P>

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

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

   **/
  public TLAObjects(TParseConfig tp_config)  {
    throwAXIfNull(tp_config, "tp_config", sCNSTR);

    tpc = tp_config;
    GapConfig gc = tp_config.getGapConfig();

    UtilGap uGap = new UtilGap();
    sTagStart = uGap.getTag(gc.getTagDelimiter(), gc.getTagTextStart());
    sTagEnd = uGap.getTag(gc.getTagDelimiter(), gc.getTagTextEnd());

    //tpc.getTagTextStart() is definitely not null, so this
    //"equals" comparison will not result in an npx.
    if(gc.getTagTextStart().equals(gc.getTagTextEnd()))  {
      throwAX("constructor:  tp_config.getGapConfig().getTagTextStart() and tp_config.getGapConfig().getTagTextEnd() are equal ('" + gc.getTagTextStart() + "').");
    }

    char[] ac = new char[] {gc.getTagDelimiter()};
    sTagDelimiter = new String(ac);
    us = new UnescapeString(new USConfig(gc.getEscapeChar(), ac, tpc.getUSCIgnore()));
  }
View Full Code Here

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

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

    <P>Equal to <CODE><A HREF="~JD~gtfs(s,s,gc)~EJD~">GetTFString</A>(s_templateName, s_srcTxt, (new <A HREF="~JD~gc#gc()~EJD~">GapConfig</A>()))</CODE></P>
   **/
  public GetTFString(String s_templateName, String s_srcTxt)  {
    this(s_templateName, s_srcTxt, (new GapConfig()));
  }
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.