Examples of JDClass


Examples of com.uic.ase.proj.xbn.jdlcode.JDClass

    @return  <CODE>(new <A HREF="~JD~jdc#jdc(s,s,pta)~EJD~">JDClass</A>([string1], [string2], pt_array))</CODE>
   **/
  public final JDClass getJDClassFromLine(String s_cfgFileLine, int i_lineNumber, PTArray pt_array)  {
    s_s ss = get2StringsFromLine(s_cfgFileLine, "getJDClassFromLine", i_lineNumber, "abbreviation", "fully qualified class name", true);

    return (new JDClass(ss.s1, ss.s2, pt_array));
  }
View Full Code Here

Examples of com.uic.ase.proj.xbn.jdlcode.JDClass

          else  {
            acoPT.add(getPackageTypeFromLine(sLine, for_lineRetrieval.getLineNumberPrev()));

          }
        }  else  {
          JDClass jdc = getJDClassFromLine(sLine, for_lineRetrieval.getLineNumberPrev(), pta);
          acoJDC.add(jdc);
        }
      }
    }

    if(!bFoundPTDivider)  {
      throwAX("getJDCAFromFLR:  So far, there are " + acoPT.size() + " PackageTypes, but I've reached the end of the file, and have not found the '~' divider line.  PackageTypes belong before it, and JDClasses after.  At least one of each is required.");
    }

    //Add the most special and reserved JDClass...
    JDClass jdc = getJDClassFromLine("over    overview-summary", 1, pta);
    acoJDC.add(jdc);

    Object[] ao = acoJDC.getAOObject();
    JDClass[] aJDC = new JDClass[ao.length];
    for(int i = 0; i < aJDC.length; i++)  {
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.