Package simple.util.net

Examples of simple.util.net.Parameters


   * @return The names of the given parameters.
   * @throws RegainException If getting the parameter names failed.
   */
  public Enumeration getParameterNames() throws RegainException {
    try {
      Parameters params = mRequest.getParameters();
      return params.getParameterNames();
    }
    catch (IOException exc) {
      throw new RegainException("Getting parameter names failed", exc);
    }
  }
View Full Code Here

TOP

Related Classes of simple.util.net.Parameters

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.