Class JavaInterface
- java.lang.Object
-
- com.sun.tools.ws.processor.model.java.JavaInterface
-
public class JavaInterface extends Object
- Author:
- WS 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()StringgetJavaDoc()IteratorgetMethods()ListgetMethodsList()StringgetName()StringgetRealName()StringgetSimpleName()booleanhasInterface(String interfaceName)booleanhasMethod(JavaMethod method)voidsetFormalName(String s)voidsetImpl(String s)voidsetInterfacesList(List l)voidsetJavaDoc(String javadoc)voidsetMethodsList(List l)voidsetRealName(String s)
-
-
-
Method Detail
-
getName
public String getName()
-
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)
-
getSimpleName
public String getSimpleName()
-
getJavaDoc
public String getJavaDoc()
-
setJavaDoc
public void setJavaDoc(String javadoc)
-
-