Class TLcyLspMapDataFlavor
Class representing data flavor constants for working with drag and drop operations of
ILspView
s and ILspLayer
s.
DropTargetListener
s and DragGestureListener
s must support LSP_VIEW_DATA_FLAVOR
and/or LSP_LAYERS_DATA_FLAVOR
when they want to drag and drop
ILspView
s and ILspLayer
s.
A GXY variant (see
TLcyMapDataFlavor
) of this class is available as well.
- Since:
- 2012.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DataFlavor
DataFlavor
that represents multipleILspLayer
s.static final DataFlavor
DataFlavor
that representsILspView
's. -
Method Summary
-
Field Details
-
LSP_VIEW_DATA_FLAVOR
DataFlavor
that representsILspView
's. The transfer data for this constant will be aILspView
.Note that one should never rely on the properties (e.g.
LSP_VIEW_DATA_FLAVOR.getMimeType()
) of this constant as they might change in a future version of Lucy. Instead one should always compare directly with this constant. -
LSP_LAYERS_DATA_FLAVOR
DataFlavor
that represents multipleILspLayer
s. The transfer data for this constant will be an array ofILspLayer
s.Note that one should never rely on the properties (e.g.
LSP_LAYERS_DATA_FLAVOR.getMimeType()
) of this constant as they might change in a future version of Lucy. Instead one should always compare directly with this constant.
-