Class JavaInterface
- java.lang.Object
-
- com.sun.xml.rpc.processor.model.java.JavaInterface
-
- All Implemented Interfaces:
JavaInterface
public class JavaInterface extends Object implements JavaInterface
- Author:
- JAX-RPC Development Team
-
-
Constructor Summary
Constructors Constructor Description JavaInterface()JavaInterface(String name)JavaInterface(String name, String impl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddInterface(String interfaceName)voidaddMethod(JavaMethod method)StringgetFormalName()StringgetImpl()IteratorgetInterfaces()ListgetInterfacesList()IteratorgetMethods()ListgetMethodsList()StringgetName()StringgetRealName()booleanhasInterface(String interfaceName)booleanhasMethod(JavaMethod method)voidsetFormalName(String s)voidsetImpl(String s)voidsetInterfacesList(List l)voidsetMethodsList(List l)voidsetRealName(String s)
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceJavaInterface
-
getFormalName
public String getFormalName()
-
setFormalName
public void setFormalName(String s)
-
getRealName
public String getRealName()
-
setRealName
public void setRealName(String s)
-
getImpl
public String getImpl()
-
setImpl
public void setImpl(String s)
-
getMethods
public Iterator getMethods()
-
hasMethod
public boolean hasMethod(JavaMethod method)
-
addMethod
public void addMethod(JavaMethod method)
-
getMethodsList
public List getMethodsList()
-
setMethodsList
public void setMethodsList(List l)
-
hasInterface
public boolean hasInterface(String interfaceName)
-
addInterface
public void addInterface(String interfaceName)
-
getInterfaces
public Iterator getInterfaces()
-
getInterfacesList
public List getInterfacesList()
-
setInterfacesList
public void setInterfacesList(List l)
-
-