Package org.jboss.forge.roaster.model
Interface Named
-
- All Known Subinterfaces:
AnnotationElement<O>,AnnotationElementSource,EnumConstant<O>,EnumConstant.ReadBody<O>,EnumConstantSource,EnumConstantSource.Body,Field<O>,FieldSource<O>,JavaAnnotation<O>,JavaAnnotationSource,JavaClass<O>,JavaClassSource,JavaEnum<O>,JavaEnumSource,JavaInterface<O>,JavaInterfaceSource,JavaPackageInfo<O>,JavaPackageInfoSource,JavaRecord<O>,JavaRecordSource,JavaSource<T>,JavaType<T>,Member<O>,MemberSource<O,T>,Method<O,T>,MethodSource<O>,NamedSource<T>,Property<O>,PropertySource<O>,TypeVariable<O>,TypeVariableSource<O>
public interface NamedRepresents a named Java element.- Author:
- Lincoln Baxter, III
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Get the simple name of thisTinstance.
-
-
-
Method Detail
-
getName
String getName()
Get the simple name of thisTinstance. (E.g: For a Java type, this is be equivalent to calling,For a Java method, this would be equivalent to callingClass.getSimpleName().Method.getName()... and so on.
-
-