Package com.uic.ase.proj.xbn.named

Examples of com.uic.ase.proj.xbn.named.PASNamed


    @param  b_listNames  Passed directly to the <A HREF="~JD~utila~EJD~">UtilArray</A>.<A HREF="~JD~utila#getAOSLFromPA(pa,b)~EJD~">getAOSLFromPA</A>, which creates the internal <A HREF="~JD~aosl~EJD~">AOSLookup</A> for this class.
   **/
  public NamedArray(String s_name, Named[] a_named, boolean b_listNames)  {
    sName = s_name;

    PASNamed pasn = new PASNamed(a_named, (new PARSStrict()));
    pasn.crashIfBad("xbn.named.NamedArray.constructor", "a_named");


    aosl = (new UtilArray()).getAOSLFromPA(pasn, b_listNames);
    apn = new APNamed(a_named, true);

View Full Code Here


  public final PASNamed getPASNamed()  {
    return getPASNamed(new PARString());
  }

  public final PASNamed getPASNamed(PARString par_string)  {
    return (new PASNamed(getAONShallowClone(), par_string));
  }
View Full Code Here

    return false;
  }

  public final PASNamed getPASNamed()  {
    try  {
      return (new PASNamed((Named[])aObject, true));
    catch(ClassCastException ccx)  {
      throwAX("getPASNamed:  As provided to the constructor, a_object is not of type 'xbn.named.Named[]'.  Currently:  '" + aObject.getClass().getName() + "'.");
    }

    //Never reached.  Required for compile.
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.named.PASNamed

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.