Package com.uic.ase.proj.xbn.jdlcode

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


    int iCommas = 0;
    while(st.hasMoreTokens())  {
      String s = st.nextToken();
      if(!s.equals(","))  {
        Parameter p = new Parameter();
        if(s.endsWith("[]"))  {
          p.bArray = true;
          s = s.substring(0, (s.length() - 2));

          if(s.length() < 1)  {
View Full Code Here


  }
  public final Parameter getParameter(int i_dx)  {
    return (Parameter)getObject(i_dx);
  }
  public final String getString(int i_dx)  {
    Parameter p = getParameter(i_dx);

    return (p.bArray?
      p.sName + "[]"  :
      p.sName;
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.jdlcode.Parameter

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.