Examples of PARChar


Examples of com.uic.ase.proj.xbn.array.primitive.PARChar

    <P>Create a PACChar.</P>

    <P>Equal to <CODE><A HREF="~JD~pacc(s,c[],parc)~EJD~">PACChar</A>(s_fqExtendingClass, a_char, (new <A HREF="~JD~parc#parc()~EJD~">PARChar</A>()))</CODE></P>
   **/
  public PACChar(String s_fqExtendingClass, char[] a_char)  {
    this(s_fqExtendingClass, a_char, (new PARChar()));
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.array.primitive.PARChar

    <P>Create a PACChar.</P>

    <P>Equal to <CODE><A HREF="~JD~pacc(s,c[],parc,b)~EJD~">PACChar</A>(<A HREF="#sPACC">sPACC</A>, a_char, (new PARChar()), b_lock)</CODE></P>
   **/
  public PACChar(char[] a_char, boolean b_lock)  {
    this(sPACC, a_char, (new PARChar()), b_lock);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.array.primitive.PARChar

    <P>Create a PACChar.</P>

    <P>Equal to <CODE><A HREF="~JD~pacc(s,c[],parc,b)~EJD~">PACChar</A>(s_fqExtendingClass, a_char, (new PARChar()), b_lock)</CODE></P>
   **/
  public PACChar(String s_fqExtendingClass, char[] a_char, boolean b_lock)  {
    this(s_fqExtendingClass, a_char, (new PARChar()), b_lock);
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.array.primitive.PARChar

    @param  c_escape  The escape character.
    @param  ac_toEscape  The array of charcters that can be escaped by c_escape (in addition to c_escape).  Must be non-null.  If at least one element in length, it must be ordered ascending, and its elements must be unique and not equal to c_escape.  If zero elements in length, then c_escape may only escape itself.
   **/
  public ESConfig(char c_escape, char[] ac_toEscape)  {
    PACChar pacc = new PACChar(ac_toEscape,
      new PARChar(
        new PARDupNullLen(false),
        new PAROrderDir(true),
        new char[] {c_escape}));
    pacc.crashIfBad("xbn.string.escape.UnescapeString.constructor", "ac_toEscape");

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.