Package eu.mihosoft.vmf.runtime.core
Interface VObject
-
- All Known Subinterfaces:
VObjectInternal
,VObjectInternalModifiable
public interface VObject
VMF base class. All generated classes of a VMF model implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VObject
asReadOnly()
Returns a read-only wrapper of this object.VObject
clone()
Returns a deep clone of this object.VMF
vmf()
Returns the VMF related functionality.
-
-
-
Method Detail
-
vmf
VMF vmf()
Returns the VMF related functionality.- Returns:
- VMF related functionality
-
clone
VObject clone()
Returns a deep clone of this object.- Returns:
- a deep clone of this object
-
asReadOnly
VObject asReadOnly()
Returns a read-only wrapper of this object.- Returns:
- a read-only wrapper of this object
-
-