Package com.uic.ase.proj.xbn.config

Examples of com.uic.ase.proj.xbn.config.CRCVTrim


    <P>Create a CRCVariable with default settings.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt)~EJD~">CRCVariable</A>(new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>())</CODE></P>
   **/
  public CRCVariable()  {
    this(new CRCVTrim());
  }
View Full Code Here


    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,crcvu)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), crcv_unescape)</CODE></P>
   **/
  public CRCVariable(CRCVUnescape crcv_unescape)  {
    this((new CRCVTrim()), crcv_unescape);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,s)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), s_nullValue)</CODE></P>
   **/
  public CRCVariable(String s_nullValue)  {
    this((new CRCVTrim()), s_nullValue);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,b)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), b_1stLineWSIsEmptyString)</CODE></P>
   **/
  public CRCVariable(boolean b_1stLineWSIsEmptyString)  {
    this((new CRCVTrim()), b_1stLineWSIsEmptyString);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,crcvu,s)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), crcv_unescape, s_nullValue)</CODE></P>
   **/
  public CRCVariable(CRCVUnescape crcv_unescape, String s_nullValue)  {
    this((new CRCVTrim()), crcv_unescape, s_nullValue);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,crcvu,b)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), crcv_unescape, b_1stLineWSIsEmptyString)</CODE></P>
   **/
  public CRCVariable(CRCVUnescape crcv_unescape, boolean b_1stLineWSIsEmptyString)  {
    this((new CRCVTrim()), crcv_unescape, b_1stLineWSIsEmptyString);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,s,b)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), s_nullValue, b_1stLineWSIsEmptyString)</CODE></P>
   **/
  public CRCVariable(String s_nullValue, boolean b_1stLineWSIsEmptyString)  {
    this((new CRCVTrim()), s_nullValue, b_1stLineWSIsEmptyString);
  }
View Full Code Here

    <P>Create a CRCVariable.</P>

    <P>Equal to <CODE><A HREF="~JD~crcv(crcvt,crcvu,s,b)~EJD~">CRCVariable</A>((new <A HREF="~JD~crcvt#crcvt()~EJD~">CRCVTrim</A>()), crcv_unescape, s_nullValue, b_1stLineWSIsEmptyString)</CODE></P>
   **/
  public CRCVariable(CRCVUnescape crcv_unescape, String s_nullValue, boolean b_1stLineWSIsEmptyString)  {
    this((new CRCVTrim()), crcv_unescape, s_nullValue, b_1stLineWSIsEmptyString);
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.config.CRCVTrim

Copyright © 2018 www.massapicom. 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.