Class AbstractRowCommand

    • Constructor Detail

      • AbstractRowCommand

        protected AbstractRowCommand​(ILayer layer,
                                     int rowPosition)
        Parameters:
        layer - The ILayer to which the column and row position correlate.
        rowPosition - The row position for which the command should be processed.
      • AbstractRowCommand

        protected AbstractRowCommand​(AbstractRowCommand command)
        Clone constructor.
        Parameters:
        command - The command to clone.
    • Method Detail

      • convertToTargetLayer

        public boolean convertToTargetLayer​(ILayer targetLayer)
        Description copied from interface: ILayerCommand
        Convert the row/column coordinates the command might be carrying from the source layer to the destination (target) layer. If it is not possible to convert the command to the target layer, then this method will return false and the state of this command object will remain unchanged. Note: Commands should not be processed if they fail conversion.
        Specified by:
        convertToTargetLayer in interface ILayerCommand
        Parameters:
        targetLayer - the target layer
        Returns:
        true if the command is valid after conversion, false if the command is no longer valid.
      • getLayer

        public ILayer getLayer()
        Returns:
        The ILayer to which the column and row position correlate.
        Since:
        1.6
      • getRowPosition

        public int getRowPosition()
        Returns:
        The row position for which the command should be processed.