Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-03-26 22:00:13 +0000
committerkmoore2008-03-26 22:00:13 +0000
commitfe32f0daa3187394ce8f9b2cab3144cbe02bc454 (patch)
treeab9fb470ad2ada4573616038cb84d34994e5b7f0 /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java
parentf2457e4437587d231fa574e055349d73753526a7 (diff)
downloadwebtools.dali-fe32f0daa3187394ce8f9b2cab3144cbe02bc454.tar.gz
webtools.dali-fe32f0daa3187394ce8f9b2cab3144cbe02bc454.tar.xz
webtools.dali-fe32f0daa3187394ce8f9b2cab3144cbe02bc454.zip
added get prefixes to resource model interfaces
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java
index 176c0659e9..60a50aa6cb 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/utility/jdt/AnnotationElementAdapter.java
@@ -31,17 +31,17 @@ public interface AnnotationElementAdapter<T> {
* Return null if the element is not present.
* If the compilation unit is available, #value(CompilationUnit)
* might be more performant.
- * @see #value(org.eclipse.jdt.core.dom.CompilationUnit)
+ * @see #getValue(org.eclipse.jdt.core.dom.CompilationUnit)
*/
- T value();
+ T getValue();
/**
* Given the specified compilation unit, return the value of the
* adapter's annotation element.
* Return null if the element is not present.
- * @see #value()
+ * @see #getValue()
*/
- T value(CompilationUnit astRoot);
+ T getValue(CompilationUnit astRoot);
/**
* Set the value of the adapter's annotation element.
@@ -55,32 +55,32 @@ public interface AnnotationElementAdapter<T> {
* Return null if the element is not present.
* If the compilation unit is available, #expression(CompilationUnit)
* might be more performant.
- * @see #expression(org.eclipse.jdt.core.dom.CompilationUnit)
+ * @see #getExpression(org.eclipse.jdt.core.dom.CompilationUnit)
*/
- Expression expression();
+ Expression getExpression();
/**
* Given the specified compilation unit, return the expression value of the
* adapter's annotation element.
* Return null if the element is not present.
- * @see #expression()
+ * @see #getExpression()
*/
- Expression expression(CompilationUnit astRoot);
+ Expression getExpression(CompilationUnit astRoot);
/**
* Return the AST node corresponding to the element.
* If the element is missing, return the annotation's node.
* If the compilation unit is available, #astNode(CompilationUnit)
* might be more performant.
- * @see #astNode(org.eclipse.jdt.core.dom.CompilationUnit)
+ * @see #getAstNode(org.eclipse.jdt.core.dom.CompilationUnit)
*/
- ASTNode astNode();
+ ASTNode getAstNode();
/**
* Return the AST node corresponding to the element.
* If the element is missing, return the annotation's node.
- * @see #astNode()
+ * @see #getAstNode()
*/
- ASTNode astNode(CompilationUnit astRoot);
+ ASTNode getAstNode(CompilationUnit astRoot);
}

Back to the top