KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ws > jaxme > pm > ino > IURLEncoder


1 package org.apache.ws.jaxme.pm.ino;
2
3 import java.io.UnsupportedEncodingException JavaDoc;
4
5
6 /** This interface allows to choose between JDK 1.3
7  * and JDK 1.4 dependent classes.
8  */

9 public interface IURLEncoder {
10     /** Encodes the string <code>pValue</code>.
11      */

12     public String JavaDoc encode(String JavaDoc pValue) throws UnsupportedEncodingException JavaDoc;
13 }
14
Popular Tags