Interface VObjectInternalModifiable
-
- All Superinterfaces:
ObservableObject
,VObject
,VObjectInternal
@Deprecated public interface VObjectInternalModifiable extends VObjectInternal
Deprecated.Don't rely on this API. Seriously, don't rely on it! Created by miho on 20.02.17.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface eu.mihosoft.vmf.runtime.core.internal.VObjectInternal
VObjectInternal.EqualsPair
-
-
Method Summary
Modifier and Type Method Description default void
_vmf_setContainer(VObject container)
Deprecated.Sets current unnamed container (named containers are represented via the specified properties instead).void
_vmf_setPropertyValueById(int propertyId, java.lang.Object value)
Deprecated.Sets values of properties by id (calls setter methods).void
_vmf_unsetById(int propertyId)
Deprecated.Unsets the specified property.default void
setModelToChanges(Changes c)
Deprecated.-
Methods inherited from interface eu.mihosoft.vmf.runtime.core.ObservableObject
addPropertyChangeListener, removePropertyChangeListener
-
Methods inherited from interface eu.mihosoft.vmf.runtime.core.VObject
asReadOnly, clone, vmf
-
Methods inherited from interface eu.mihosoft.vmf.runtime.core.internal.VObjectInternal
__vmf_toString, _vmf_getAnnotations, _vmf_getChildrenIndices, _vmf_getContainer, _vmf_getDefaultValueById, _vmf_getIndicesOfPropertiesWithModelElementTypes, _vmf_getIndicesOfPropertiesWithModelTypeOrElementTypes, _vmf_getIndicesOfPropertiesWithModelTypes, _vmf_getMutableObject, _vmf_getParentIndices, _vmf_getPropertyAnnotationsById, _vmf_getPropertyIdByName, _vmf_getPropertyNames, _vmf_getPropertyTypeNames, _vmf_getPropertyTypes, _vmf_getPropertyValueById, _vmf_getSuperTypeNames, _vmf_getTypeId, _vmf_isReadOnly, _vmf_isSetById, _vmf_referencedBy, _vmf_references, _vmf_setDefaultValueById, _vmf_setThreadLocalEquals
-
-
-
-
Method Detail
-
_vmf_setPropertyValueById
void _vmf_setPropertyValueById(int propertyId, java.lang.Object value)
Deprecated.Sets values of properties by id (calls setter methods).- Parameters:
propertyId
- id of the property that shall be changedvalue
- the value to set
-
_vmf_unsetById
void _vmf_unsetById(int propertyId)
Deprecated.Unsets the specified property.- Parameters:
propertyId
- id of the property to unset
-
setModelToChanges
default void setModelToChanges(Changes c)
Deprecated.
-
_vmf_setContainer
default void _vmf_setContainer(VObject container)
Deprecated.Sets current unnamed container (named containers are represented via the specified properties instead).- Parameters:
container
- container to set
-
-