Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.mjh.switchrmi.protocol.xmlrpc
Class XmlRpcMethodSignatures.XmlRpcMethods  view XmlRpcMethodSignatures.XmlRpcMethods download XmlRpcMethodSignatures.XmlRpcMethods.java

java.lang.Object
  extended bycom.mjh.switchrmi.protocol.xmlrpc.XmlRpcMethodSignatures.XmlRpcMethods
Enclosing class:
XmlRpcMethodSignatures

static class XmlRpcMethodSignatures.XmlRpcMethods
extends java.lang.Object


Field Summary
private static java.lang.String EXTERNAL_ATTR
           
private  java.util.HashMap externals
           
private static java.lang.String INTERNAL_ATTR
           
private  java.util.HashMap internals
           
private static java.lang.String METHOD_TAG
           
 
Constructor Summary
XmlRpcMethodSignatures.XmlRpcMethods(java.io.InputStream in)
           
 
Method Summary
 java.lang.String getEncodedSignatureForExternalName(java.lang.String external)
           
 java.lang.String getExternalNameForEncodedSignature(java.lang.String signature)
           
private  void parse(java.io.InputStream in)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

METHOD_TAG

private static final java.lang.String METHOD_TAG
See Also:
Constant Field Values

INTERNAL_ATTR

private static final java.lang.String INTERNAL_ATTR
See Also:
Constant Field Values

EXTERNAL_ATTR

private static final java.lang.String EXTERNAL_ATTR
See Also:
Constant Field Values

internals

private java.util.HashMap internals

externals

private java.util.HashMap externals
Constructor Detail

XmlRpcMethodSignatures.XmlRpcMethods

public XmlRpcMethodSignatures.XmlRpcMethods(java.io.InputStream in)
                                     throws java.lang.Exception
Method Detail

getExternalNameForEncodedSignature

public java.lang.String getExternalNameForEncodedSignature(java.lang.String signature)

getEncodedSignatureForExternalName

public java.lang.String getEncodedSignatureForExternalName(java.lang.String external)

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).


parse

private void parse(java.io.InputStream in)
            throws java.lang.Exception