Class FeatureTypeChangedEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.esri.arcgisruntime.mapping.popup.FeatureTypeChangedEvent
-
- All Implemented Interfaces:
java.io.Serializable
public final class FeatureTypeChangedEvent extends java.util.EventObject
Provides a reference to the PopupManager that calledFeatureTypeChangedListener.featureTypeChanged(FeatureTypeChangedEvent)
. This occurs when an ArcGISFeature's feature type is changed from one value to another when being edited in a Popup. This can be used to know when to update certain UI elements - for example, showing a different symbol that represents the new feature type.- Since:
- 100.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FeatureTypeChangedEvent(PopupManager source)
Constructs a new instance of this class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PopupManager
getSource()
Gets the PopupManager that issued this event.
-
-
-
Constructor Detail
-
FeatureTypeChangedEvent
public FeatureTypeChangedEvent(PopupManager source)
Constructs a new instance of this class.- Parameters:
source
- the PopupManager which fired the event- Since:
- 100.0.0
-
-
Method Detail
-
getSource
public PopupManager getSource()
Gets the PopupManager that issued this event.- Overrides:
getSource
in classjava.util.EventObject
- Returns:
- the PopupManager that issued this event
- Since:
- 100.0.0
-
-