Package org.apache.etch.compiler.ast

Examples of org.apache.etch.compiler.ast.Parameter.descr()


      else if (type == Type.Param)
      {
//        System.out.printf( "adding to p.descr (%s): %s\n", name, s );
        Parameter p = m.getParameter( name );
        if (p != null)
          p.descr().add( s );
        else
          System.out.printf( "*** warning: cannot document parameter %s of %s\n", name, m.name() );
      }
      else if (type == Type.Return)
      {
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.