Class IDLType
- java.lang.Object
-
- com.sun.corba.ee.impl.presentation.rmi.IDLType
-
public class IDLType extends java.lang.Object
Holds information about the OMG IDL mapping of a Java type.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Class
cl_
private java.lang.String
memberName_
private java.lang.String[]
modules_
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExceptionName()
java.lang.Class
getJavaClass()
java.lang.String
getMemberName()
java.lang.String
getModuleName()
java.lang.String[]
getModules()
boolean
hasModule()
True if this type doesn't have a containing module.java.lang.String
makeConcatenatedName(char separator, boolean fixIDLKeywords)
-
-
-
Method Detail
-
getJavaClass
public java.lang.Class getJavaClass()
-
getModules
public java.lang.String[] getModules()
-
makeConcatenatedName
public java.lang.String makeConcatenatedName(char separator, boolean fixIDLKeywords)
-
getModuleName
public java.lang.String getModuleName()
-
getExceptionName
public java.lang.String getExceptionName()
-
getMemberName
public java.lang.String getMemberName()
-
hasModule
public boolean hasModule()
True if this type doesn't have a containing module. This would be true of a java type defined in the default package or a primitive.- Returns:
- if there is a contained module.
-
-