Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java')
-rw-r--r--doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java b/doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java
index 25edf9913..2b52e6cd6 100644
--- a/doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java
+++ b/doc/org.eclipse.qvtd.doc.minioclcs.xtext/src-gen/org/eclipse/qvtd/doc/minioclcs/xtext/tx/ObjectManager.java
@@ -29,7 +29,6 @@ import org.eclipse.jdt.annotation.Nullable;
*
* assigned should be invoked to invocation that a property whose access is guarded is now assigned.
*
- * at-since 1.1
* @noimplement clients should derive from AbstractObjectManager
*/
public interface ObjectManager extends ExecutionVisitable
@@ -49,6 +48,8 @@ public interface ObjectManager extends ExecutionVisitable
*/
void created(Invocation.@NonNull Incremental invocation, @NonNull Object eObject);
+ void destroyed(@NonNull Object eObject);
+
@NonNull Iterable<@NonNull ? extends Object> getObjects();
@NonNull Iterable<@NonNull ? extends SlotState> getSlotStates(@NonNull Object object);
@@ -59,9 +60,7 @@ public interface ObjectManager extends ExecutionVisitable
void getting(@NonNull Object eObject, /*@NonNull*/ EStructuralFeature eFeature, boolean isOpposite) throws InvocationFailedException;
/**
- * Identify that the read of eFeature of eObject return ecoreValue.
+ * Identify that the read of eFeature of eObject returns ecoreValue.
*/
- void got(Invocation.@NonNull Incremental invocation, @NonNull Object eObject, /*@NonNull*/ EStructuralFeature eFeature, @Nullable Object ecoreValue);
-
- void unblock(@NonNull Invocation anInvocation);
+ void got(Execution.@NonNull Incremental invocation, @NonNull Object eObject, /*@NonNull*/ EStructuralFeature eFeature, @Nullable Object ecoreValue);
}

Back to the top