Package pedro.util

Examples of pedro.util.Parameter


   */
  protected String getValue( final Parameter[] parameters, final String name )
  {
    for( int i = 0; i < parameters.length; i++ )
    {
      final Parameter parameter = parameters[ i ];
     
      if( parameter.getName().equals( name ) )
      {
        return parameter.getValue();
      }
    }
   
    return null;
  }
View Full Code Here

TOP

Related Classes of pedro.util.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.