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

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


    <P>Get the Named object's <I>name</I>, at the requested array index.</P>

    @return  <CODE>(Named)<A HREF="#getNamed(int)">getNamed</A>(i_dx).<A HREF="~JD~n~EJD~#getName()">getName</A>()</CODE>
   **/
  public final String getString(int i_dx)  {
    Named n = getNamed(i_dx);

    try  {
      return n.getName();
    catch(NullPointerException npx)  {
      throwAX("get:  isNull(" + i_dx + ") equals true.");
    }

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


    <P>Get the array of strings.  This array is composed of all those strings <A HREF="~JD~add(n)~EJD~">add</A>ed since this object was created, or since the last time this function was called.</P>

    @return  An array containing all strings added, in the same order as originally added (if not ordered when added), or in order (if ordered when added).
   **/
  public final Named[] getAONamed()  {
    Named an[] = new Named[getVector().size()];

    if(an.length == 0)  {
      return an;
    }

View Full Code Here

TOP

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

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.