Class AnnotationProxy
- java.lang.Object
-
- org.apache.xmlbeans.impl.jam.annotation.AnnotationProxy
-
- Direct Known Subclasses:
DefaultAnnotationProxy
,TypedAnnotationProxyBase
public abstract class AnnotationProxy extends java.lang.Object
Deprecated.do not use, moving into internal
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
SINGLE_MEMBER_NAME
Deprecated.Name of the member of annotations which have only a single member.
-
Constructor Summary
Constructors Constructor Description AnnotationProxy()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description JAnnotationValue
getValue(java.lang.String named)
Deprecated.abstract JAnnotationValue[]
getValues()
Deprecated.void
init(JamServiceContext ctx)
Deprecated.Called by JAM to initialize the proxy.abstract void
setValue(java.lang.String name, java.lang.Object value, JClass type)
Deprecated.Called by JAM to initialize a named member on this annotation proxy.
-
-
-
Field Detail
-
SINGLE_MEMBER_NAME
public static final java.lang.String SINGLE_MEMBER_NAME
Deprecated.Name of the member of annotations which have only a single member. As specified in JSR175, that name is "value", but you should use this constant to prevent typos.
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
public void init(JamServiceContext ctx)
Deprecated.Called by JAM to initialize the proxy. Do not try to call this yourself.
-
setValue
public abstract void setValue(java.lang.String name, java.lang.Object value, JClass type)
Deprecated.Called by JAM to initialize a named member on this annotation proxy.
-
getValues
public abstract JAnnotationValue[] getValues()
Deprecated.
-
getValue
public JAnnotationValue getValue(java.lang.String named)
Deprecated.
-
-