Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java
index 23d53174f3..227303cfff 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java
+++ b/jpa/plugins/org.eclipse.jpt.jpa.core/src/org/eclipse/jpt/jpa/core/jpa2_1/resource/java/NamedStoredProcedureQuery2_1Annotation.java
@@ -116,6 +116,11 @@ public interface NamedStoredProcedureQuery2_1Annotation
/**
* Corresponds to the 'resultClasses' element of the NamedStoredProcedureQuery annotation.
*/
+ void addResultClass(int index, String resultClass);
+
+ /**
+ * Corresponds to the 'resultClasses' element of the NamedStoredProcedureQuery annotation.
+ */
void moveResultClass(int targetIndex, int sourceIndex);
/**
@@ -156,6 +161,11 @@ public interface NamedStoredProcedureQuery2_1Annotation
/**
* Corresponds to the 'resultSetMappings' element of the NamedStoredProcedureQuery annotation.
*/
+ void addResultSetMapping(int index, String resultSetMapping);
+
+ /**
+ * Corresponds to the 'resultSetMappings' element of the NamedStoredProcedureQuery annotation.
+ */
void moveResultSetMapping(int targetIndex, int sourceIndex);
/**

Back to the top