Interface ChangeInternal
- All Superinterfaces:
Change
@Deprecated public interface ChangeInternal extends Change
Deprecated.
For internal use by the VMF framework. Do not rely on this API. Seriously, don't rely on it.
It might change without prior notice.
-
Nested Class Summary
Nested classes/interfaces inherited from interface eu.mihosoft.vmf.runtime.core.Change
Change.ChangeType
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CHANGE_TYPE_CONTAINMENT
Deprecated.static java.lang.String
CHANGE_TYPE_CROSS_REF
Deprecated.static java.lang.String
CHANGE_TYPE_EMPTY
Deprecated. -
Method Summary
Modifier and Type Method Description java.lang.String
getInternalChangeInfo()
Deprecated.A string that indicates additional information, such as events generated by cross-ref etc.static boolean
isCrossRefChange(Change c)
Deprecated.Indicates whether the specified change is only a crossref change, i.e, triggered by setting the opposite of the cross ref.static boolean
isCrossRefChange(vjavax.observer.collection.CollectionChangeEvent c)
Deprecated.Indicates whether the specified change is only a crossref list change, i.e, triggered by setting the opposite of the cross ref.Methods inherited from interface eu.mihosoft.vmf.runtime.core.Change
apply, getTimestamp, getType, isUndoable, listChange, object, propertyChange, propertyName, undo
-
Field Details
-
CHANGE_TYPE_CROSS_REF
static final java.lang.String CHANGE_TYPE_CROSS_REFDeprecated.- See Also:
- Constant Field Values
-
CHANGE_TYPE_CONTAINMENT
static final java.lang.String CHANGE_TYPE_CONTAINMENTDeprecated.- See Also:
- Constant Field Values
-
CHANGE_TYPE_EMPTY
static final java.lang.String CHANGE_TYPE_EMPTYDeprecated.- See Also:
- Constant Field Values
-
-
Method Details
-
getInternalChangeInfo
java.lang.String getInternalChangeInfo()Deprecated.A string that indicates additional information, such as events generated by cross-ref etc. -
isCrossRefChange
Deprecated.Indicates whether the specified change is only a crossref change, i.e, triggered by setting the opposite of the cross ref.- Parameters:
c
- change to check- Returns:
true
if the specified change is triggered by setting the opposite;false
otherwise
-
isCrossRefChange
static boolean isCrossRefChange(vjavax.observer.collection.CollectionChangeEvent c)Deprecated.Indicates whether the specified change is only a crossref list change, i.e, triggered by setting the opposite of the cross ref.- Parameters:
c
- change to check- Returns:
true
if the specified change is triggered by setting the opposite;false
otherwise
-