org.jboss.solder.support
Interface SolderMessages
@MessageBundle
public interface SolderMessages
Messages used for exception messages in Solder.
- Author:
- Pete Muir
annotationAlreadyPresent
@Message(value="annotationType %s already present")
String annotationAlreadyPresent(Class<? extends Annotation> annotationType)
annotationNotPresent
@Message(value="annotationType %s not present")
String annotationNotPresent(Class<? extends Annotation> annotationType)
fieldNotPresent
@Message(value="field %s not present on class %s")
String fieldNotPresent(Field field,
Class<?> declaringClass)
methodNotPresent
@Message(value="method %s not present on class %s")
String methodNotPresent(Method method,
Class<?> declaringClass)
parameterNotPresent
@Message(value="parameter %s not present on method %s declared on class %s")
String parameterNotPresent(Method method,
int parameterPosition,
Class<?> declaringClass)
parameterMustNotBeNull
@Message(value="%s parameter must not be null")
String parameterMustNotBeNull(String parameterName)
Copyright © 2008-2011 Seam Framework. All Rights Reserved.