Searched defs:p_port (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DURI.java274 * @param p_port the URI port (may be -1 for "unspecified"; cannot
289 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
306 if (p_port != -1)
330 setPort(p_port);
1124 * @param p_port the port number for this URI
1126 * @throws MalformedURIException if p_port is not -1 and not a
1129 public void setPort(int p_port) throws MalformedURIException argument
1132 if (p_port >= 0 && p_port <= 65535)
1140 else if (p_port !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DURI.java272 * @param p_port the URI port (may be -1 for "unspecified"; cannot
287 public URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
304 if (p_port != -1)
328 setPort(p_port);
1145 * @param p_port the port number for this URI
1147 * @throws MalformedURIException if p_port is not -1 and not a
1150 public void setPort(int p_port) throws MalformedURIException argument
1153 if (p_port >= 0 && p_port <= 65535)
1161 else if (p_port !
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJaxmURI.java249 * @param p_port the URI port (may be -1 for "unspecified"; cannot
265 String p_host, int p_port, String p_path,
277 if (p_port != -1) {
297 setPort(p_port);
947 * @param p_port the port number for this URI
949 * @exception MalformedURIException if p_port is not -1 and not a
952 public void setPort(int p_port) throws MalformedURIException { argument
953 if (p_port >= 0 && p_port <= 65535) {
959 else if (p_port !
264 JaxmURI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DURI.java402 * @param p_port the URI port (may be -1 for "unspecified"; cannot
418 String p_host, int p_port, String p_path,
430 if (p_port != -1) {
450 setPort(p_port);
1491 * @param p_port the port number for this URI
1493 * @exception MalformedURIException if p_port is not -1 and not a
1496 public void setPort(int p_port) throws MalformedURIException { argument
1497 if (p_port >= 0 && p_port <= 65535) {
1503 else if (p_port !
417 URI(String p_scheme, String p_userinfo, String p_host, int p_port, String p_path, String p_queryString, String p_fragment) argument
[all...]

Completed in 300 milliseconds