summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java
diff options
context:
space:
mode:
Diffstat (limited to 'projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java')
-rw-r--r--projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java37
1 files changed, 21 insertions, 16 deletions
diff --git a/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java b/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java
index 818985d..6c977b9 100644
--- a/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java
+++ b/projects/net.wotonomy.persistence/src/main/java/net/wotonomy/access/EOAdaptorOperation.java
@@ -22,14 +22,13 @@ import net.wotonomy.foundation.NSArray;
import net.wotonomy.foundation.NSDictionary;
/**
-* Represents a single primitive operation in a database server.
-* Can be insert, update, delete, lock a row, or execute a
-* stored procedure.
-*
-* @author ezamudio@nasoft.com
-* @author $Author: cgruber $
-* @version $Revision: 894 $
-*/
+ * Represents a single primitive operation in a database server. Can be insert,
+ * update, delete, lock a row, or execute a stored procedure.
+ *
+ * @author ezamudio@nasoft.com
+ * @author $Author: cgruber $
+ * @version $Revision: 894 $
+ */
public class EOAdaptorOperation {
protected EOEntity _entity;
@@ -48,6 +47,7 @@ public class EOAdaptorOperation {
public void setAdaptorOperator(int adOp) {
_adaptorOp = adOp;
}
+
public int adaptorOperator() {
return _adaptorOp;
}
@@ -55,6 +55,7 @@ public class EOAdaptorOperation {
public void setAttributes(NSArray atts) {
_attributes = atts;
}
+
public NSArray attributes() {
return _attributes;
}
@@ -62,6 +63,7 @@ public class EOAdaptorOperation {
public void setChangedValues(NSDictionary values) {
_changedValues = values;
}
+
public NSDictionary changedValues() {
return _changedValues;
}
@@ -85,6 +87,7 @@ public class EOAdaptorOperation {
public void setException(Throwable t) {
_exception = t;
}
+
public Throwable exception() {
return _exception;
}
@@ -92,6 +95,7 @@ public class EOAdaptorOperation {
public void setQualifier(EOQualifier q) {
_qualifier = q;
}
+
public EOQualifier qualifier() {
return _qualifier;
}
@@ -99,22 +103,23 @@ public class EOAdaptorOperation {
public void setStoredProcedure(EOStoredProcedure sp) {
_proc = sp;
}
+
public EOStoredProcedure storedProcedure() {
return _proc;
}
}
/*
- * $Log$
- * Revision 1.2 2006/02/16 16:47:13 cgruber
- * Move some classes in to "internal" packages and re-work imports, etc.
+ * $Log$ Revision 1.2 2006/02/16 16:47:13 cgruber Move some classes in to
+ * "internal" packages and re-work imports, etc.
*
- * Also use UnsupportedOperationExceptions where appropriate, instead of WotonomyExceptions.
+ * Also use UnsupportedOperationExceptions where appropriate, instead of
+ * WotonomyExceptions.
*
- * Revision 1.1 2006/02/16 13:19:57 cgruber
- * Check in all sources in eclipse-friendly maven-enabled packages.
+ * Revision 1.1 2006/02/16 13:19:57 cgruber Check in all sources in
+ * eclipse-friendly maven-enabled packages.
*
- * Revision 1.1 2003/08/13 00:37:45 chochos
- * an almost complete implementation of the abstract adaptor-layer classes
+ * Revision 1.1 2003/08/13 00:37:45 chochos an almost complete implementation of
+ * the abstract adaptor-layer classes
*
*/ \ No newline at end of file