Interface MessageInterface
-
- All Superinterfaces:
javax.lang.model.AnnotatedConstruct,ClassType,java.lang.Comparable<MessageInterface>,DelegatingElement,DelegatingTypeElement,javax.lang.model.element.Element,JavaDocComment,javax.lang.model.element.Parameterizable,javax.lang.model.element.QualifiedNameable,javax.lang.model.element.TypeElement
- All Known Implementing Classes:
MessageInterfaceFactory.AptMessageInterface,MessageInterfaceFactory.LoggerInterface
public interface MessageInterface extends java.lang.Comparable<MessageInterface>, ClassType, JavaDocComment, DelegatingTypeElement
Date: 28.07.2011
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.util.PropertiesexpressionProperties()The properties used to resolve expressions.java.util.Set<MessageInterface>extendedInterfaces()A set of qualified interface names this interface extends or an empty set.booleanextendsLoggerInterface()Checks the interface to see if thelogger interfaceis being extended in this interface.default javax.lang.model.element.TypeElementgeneratedAnnotation()Returns the type to use for the@Generatedannotation.intgetIdLength()The length to pad the id with.java.lang.StringloggingFQCN()The fully qualified class name to use for log methods.java.util.Collection<MessageMethod>methods()A collection of all the methods this interface needs to implement.java.lang.Stringname()The qualified name of the message interface.java.lang.StringpackageName()The package name of the message interface.java.lang.StringprojectCode()The project code for the message interface ornullif not annotated with@MessageBundleor@MessageLogger.java.lang.StringsimpleName()The name of the interface without the package.java.util.List<ValidIdRange>validIdRanges()Returns a list ofvalid id ranges.-
Methods inherited from interface org.jboss.logging.processor.model.ClassType
isAssignableFrom, isSameAs, isSubtypeOf
-
Methods inherited from interface org.jboss.logging.processor.model.DelegatingElement
accept, getAnnotation, getAnnotationMirrors, getAnnotationsByType, getKind, getModifiers, isAnnotatedWith
-
Methods inherited from interface org.jboss.logging.processor.model.DelegatingTypeElement
asType, getDelegate, getEnclosedElements, getEnclosingElement, getInterfaces, getNestingKind, getQualifiedName, getSimpleName, getSuperclass, getTypeParameters
-
Methods inherited from interface org.jboss.logging.processor.model.JavaDocComment
getComment
-
-
-
-
Method Detail
-
extendsLoggerInterface
boolean extendsLoggerInterface()
Checks the interface to see if thelogger interfaceis being extended in this interface.- Returns:
trueif this interface extends the logger interface, otherwisefalse.
-
extendedInterfaces
java.util.Set<MessageInterface> extendedInterfaces()
A set of qualified interface names this interface extends or an empty set.- Returns:
- a set of interface names or an empty set.
-
methods
java.util.Collection<MessageMethod> methods()
A collection of all the methods this interface needs to implement.- Returns:
- a collection of methods.
-
projectCode
java.lang.String projectCode()
The project code for the message interface ornullif not annotated with@MessageBundleor@MessageLogger.- Returns:
- the project code or
nullif not annotated with@MessageBundleor@MessageLogger
-
name
java.lang.String name()
The qualified name of the message interface.- Returns:
- the qualified name.
-
packageName
java.lang.String packageName()
The package name of the message interface.- Returns:
- the package name.
-
simpleName
java.lang.String simpleName()
The name of the interface without the package.- Returns:
- the simple interface name.
-
loggingFQCN
java.lang.String loggingFQCN()
The fully qualified class name to use for log methods. This will generally be the same result asname().- Returns:
- the fully qualified class name to use for logging.
-
validIdRanges
java.util.List<ValidIdRange> validIdRanges()
Returns a list ofvalid id ranges.- Returns:
- a list of valid id ranges or an empty list
-
getIdLength
int getIdLength()
The length to pad the id with. A value of less than 0 indicates no padding.- Returns:
- the length to pad the id with
-
generatedAnnotation
default javax.lang.model.element.TypeElement generatedAnnotation()
Returns the type to use for the@Generatedannotation. This may returnnullof the implementation should not be annotated.- Returns:
- the type for the generated annotation or
nullif no annotation is wanted
-
expressionProperties
default java.util.Properties expressionProperties()
The properties used to resolve expressions.- Returns:
- the properties used to resolve expressions
-
-