Package com.google.gwt.core.ext.soyc
Interface ClassMember
- 
- All Superinterfaces:
- HasDependencies,- Member,- java.io.Serializable
 
 public interface ClassMember extends HasDependencies, Member 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 bygetFields()andgetMethods()may be incomplete when compared to the original Java type.
- 
- 
Field Summary- 
Fields inherited from interface com.google.gwt.core.ext.soyc.MemberSOURCE_NAME_COMPARATOR, TYPE_AND_SOURCE_NAME_COMPARATOR
 
- 
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.SortedSet<FieldMember>getFields()Returns the fields of the ClassMember that have been retained in the compiled output.java.util.SortedSet<MethodMember>getMethods()Returns the methods of the ClassMember that have been retained in the compiled output.java.lang.StringgetPackage()Returns the Java package from which the ClassMember originated.- 
Methods inherited from interface com.google.gwt.core.ext.soyc.HasDependenciesgetDependencies
 - 
Methods inherited from interface com.google.gwt.core.ext.soyc.MembergetSourceName, isClass, isField, isMethod
 
- 
 
- 
- 
- 
Method Detail- 
getFieldsjava.util.SortedSet<FieldMember> getFields() Returns the fields of the ClassMember that have been retained in the compiled output.
 - 
getMethodsjava.util.SortedSet<MethodMember> getMethods() Returns the methods of the ClassMember that have been retained in the compiled output.
 - 
getPackagejava.lang.String getPackage() Returns the Java package from which the ClassMember originated.
 
- 
 
-