| java.lang.Object net.refractions.udig.project.command.SelectionCommandFactory
All known Subclasses: net.refractions.udig.project.command.factory.SelectionCommandFactory,
SelectionCommandFactory | public class SelectionCommandFactory (Code) | | A factory which can be used to create all the standard selection commands.
API use
author: jeichar since: 0.3 |
SelectionCommandFactory | protected SelectionCommandFactory()(Code) | | |
createBBoxSelectionCommand | public MapCommand createBBoxSelectionCommand(Envelope bbox, int modifiers)(Code) | | Creates a new
Parameters: bbox - A bounding used as the filter, all features intersecting the bbox will beconsidered selected Parameters: modifiers - Options include: BBoxSelectionCommand.ADD, BBoxSelectionCommand.NONE,BBoxSelectionCommand.SUBTRACT A new BBoxSelectionCommand. The command should be sent to theto be executed. See Also: Envelope See Also: MapCommand |
createBBoxSelectionCommand | public MapCommand createBBoxSelectionCommand(Envelope boundingBox)(Code) | | Creates a new
.
Same as createBBoxSelectionCommand(bbox, BBoxSelectionCommand.NONE)
Parameters: bbox - A bounding used as the filter, all features intersecting the bbox will beconsidered selected A new BBoxSelectionCommand. The command should be sent to theto be executed. See Also: Envelope See Also: MapCommand |
createCompositeCommand | public MapCommand createCompositeCommand(List<? extends MapCommand> commands)(Code) | | Create a CompositeCommand
Parameters: commands - the commands to be executed as a single command a See Also: MapCommand |
createFIDSelectCommand | public MapCommand createFIDSelectCommand(ILayer layer, Feature feature)(Code) | | Create a MapCommand that sets the layer selection to be a fidfilter.
a See Also: MapCommand |
createNoSelectCommand | public MapCommand createNoSelectCommand()(Code) | | Creates a
a object. The command should be sent to theto be executed. See Also: MapCommand |
createSelectCommand | public MapCommand createSelectCommand(ILayer layer, Filter filter)(Code) | | Create a MapCommand that sets the layer selection to be the filter.
a See Also: MapCommand |
createUndoableCompositeCommand | public MapCommand createUndoableCompositeCommand(List<? extends UndoableMapCommand> commands)(Code) | | Create a CompositeCommand
Parameters: commands - the commands to be executed as a single command a See Also: MapCommand |
getInstance | public static SelectionCommandFactory getInstance()(Code) | | Creates a new SelectionCommandFactory object
a new SelectionCommandFactory object |
|
|