Package com.google.gwt.core.ext.soyc
Interface ClassMember
- All Superinterfaces:
HasDependencies
,Member
,Serializable
Represents a reference type, such as a class or interface, in the compiled
output. Methods and fields of the original Java type will have been pruned by
the compiler, so the values returned by
getFields()
and
getMethods()
may be incomplete when compared to the original Java
type.-
Field Summary
Fields inherited from interface com.google.gwt.core.ext.soyc.Member
SOURCE_NAME_COMPARATOR, TYPE_AND_SOURCE_NAME_COMPARATOR
-
Method Summary
Modifier and TypeMethodDescriptionReturns the fields of the ClassMember that have been retained in the compiled output.Returns the methods of the ClassMember that have been retained in the compiled output.Returns the Java package from which the ClassMember originated.Methods inherited from interface com.google.gwt.core.ext.soyc.HasDependencies
getDependencies
Methods inherited from interface com.google.gwt.core.ext.soyc.Member
getSourceName, isClass, isField, isMethod
-
Method Details
-
getFields
SortedSet<FieldMember> getFields()Returns the fields of the ClassMember that have been retained in the compiled output. -
getMethods
SortedSet<MethodMember> getMethods()Returns the methods of the ClassMember that have been retained in the compiled output. -
getPackage
String getPackage()Returns the Java package from which the ClassMember originated.
-