Package provided.owlMaps.general
Interface IEditableObject
- All Superinterfaces:
ICefObjectWrapper
,ICefObjRef
- All Known Subinterfaces:
IPolygon
,IPolygonWrapped
,IPolyline
,IPolylineWrapped
,IRectangle
,IRectangleWrapped
public interface IEditableObject extends ICefObjectWrapper
Represents an editable map object corresponding to an actual underlying
Javascript object on the map.
- Author:
- swong
-
Method Summary
Modifier and Type Method Description default boolean
getEditable()
Get the editable status of the underlying objectdefault void
setEditable(boolean isEditable)
Set the editable status of the underlying objectMethods inherited from interface provided.owlMaps.cefUtils.ICefObjectWrapper
addEvent, addEvent, call, callVoid, getCefId, getCefProperty, getWrappedCefObject, setCefProperty
-
Method Details
-
getEditable
default boolean getEditable()Get the editable status of the underlying object- Returns:
- True if editable, false otherwise
-
setEditable
default void setEditable(boolean isEditable)Set the editable status of the underlying object- Parameters:
isEditable
- True if editable, false otherwise
-