@MessageBundle public interface SolderMessages
Modifier and Type | Method and Description |
---|---|
String |
annotationAlreadyPresent(Class<? extends Annotation> annotationType) |
String |
annotationNotPresent(Class<? extends Annotation> annotationType) |
String |
fieldNotPresent(Field field,
Class<?> declaringClass) |
String |
methodNotPresent(Method method,
Class<?> declaringClass) |
String |
parameterMustNotBeNull(String parameterName) |
String |
parameterNotPresent(Method method,
int parameterPosition,
Class<?> declaringClass) |
@Message(value="annotationType %s already present") String annotationAlreadyPresent(Class<? extends Annotation> annotationType)
@Message(value="annotationType %s not present") String annotationNotPresent(Class<? extends Annotation> annotationType)
@Message(value="field %s not present on class %s") String fieldNotPresent(Field field, Class<?> declaringClass)
@Message(value="method %s not present on class %s") String methodNotPresent(Method method, Class<?> declaringClass)
@Message(value="parameter %s not present on method %s declared on class %s") String parameterNotPresent(Method method, int parameterPosition, Class<?> declaringClass)
Copyright © 2008–2013 Seam Framework. All rights reserved.