|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IAnnotationAttributeInitializer
Base interface for annotation attribute initializers.
Provisional API: This class/interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is being made available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
Method Summary | |
---|---|
java.util.List<org.eclipse.jface.text.contentassist.ICompletionProposal> |
getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement javaElement,
org.eclipse.jdt.core.dom.MemberValuePair memberValuePair)
Used to provide a list of ICompletionProposal for a MemberValuePair value. |
java.util.List<org.eclipse.jface.text.contentassist.ICompletionProposal> |
getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement javaElement,
org.eclipse.jdt.core.dom.SingleMemberAnnotation singleMemberAnnotation)
Used to provide a list of ICompletionProposal for a SingleMemberAnnotation value. |
java.util.List<org.eclipse.jdt.core.dom.MemberValuePair> |
getMemberValuePairs(org.eclipse.jdt.core.IJavaElement javaElement,
org.eclipse.jdt.core.dom.AST ast,
java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)
Deprecated. as of 1.1 replaced by getMemberValuePairs(IJavaElement, AST, IType) |
java.util.List<org.eclipse.jdt.core.dom.MemberValuePair> |
getMemberValuePairs(org.eclipse.jdt.core.IJavaElement javaElement,
org.eclipse.jdt.core.dom.AST ast,
org.eclipse.jdt.core.IType type)
Returns a list of MemberValuePair that may be added to a NormalAnnotation . |
Method Detail |
---|
@Deprecated java.util.List<org.eclipse.jdt.core.dom.MemberValuePair> getMemberValuePairs(org.eclipse.jdt.core.IJavaElement javaElement, org.eclipse.jdt.core.dom.AST ast, java.lang.Class<? extends java.lang.annotation.Annotation> annotationClass)
getMemberValuePairs(IJavaElement, AST, IType)
MemberValuePair
that may be added to a NormalAnnotation
.
javaElement
- the java element on which the annotation is declared.ast
- the AST
with which to create the member value pairs.annotationClass
- the Annotation
class which may be
used to query the declared members of the annotation type and the members default values.
java.util.List<org.eclipse.jdt.core.dom.MemberValuePair> getMemberValuePairs(org.eclipse.jdt.core.IJavaElement javaElement, org.eclipse.jdt.core.dom.AST ast, org.eclipse.jdt.core.IType type)
MemberValuePair
that may be added to a NormalAnnotation
.
javaElement
- the java element on which the annotation is declared.ast
- the AST
with which to create the member value pairs.type
- the IType
which represents an annotation type,.
java.util.List<org.eclipse.jface.text.contentassist.ICompletionProposal> getCompletionProposalsForMemberValuePair(org.eclipse.jdt.core.IJavaElement javaElement, org.eclipse.jdt.core.dom.MemberValuePair memberValuePair)
ICompletionProposal
for a MemberValuePair
value.
javaElement
- the java element on which the annotation is declared.memberValuePair
- the member value pair in which content assist was invoked.
java.util.List<org.eclipse.jface.text.contentassist.ICompletionProposal> getCompletionProposalsForSingleMemberAnnotation(org.eclipse.jdt.core.IJavaElement javaElement, org.eclipse.jdt.core.dom.SingleMemberAnnotation singleMemberAnnotation)
ICompletionProposal
for a SingleMemberAnnotation
value.
javaElement
- the java element on which the annotation is declared.singleMemberAnnotation
- the single member annotation in which content assist was invoked.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |