Uses of Interface
VASSAL.tools.opcache.Op
Package | Description |
---|---|
VASSAL.build.module.gamepieceimage | |
VASSAL.build.module.map.boardPicker.board |
Contains classes that may be added to a
Board . |
VASSAL.counters |
Provides classes that define game pieces.
|
VASSAL.tools.imageop | |
VASSAL.tools.opcache |
-
Uses of Op in VASSAL.build.module.gamepieceimage
Classes in VASSAL.build.module.gamepieceimage that implement Op Modifier and Type Class Description protected static class
ImageItem.BaseOp
Methods in VASSAL.build.module.gamepieceimage that return types with arguments of type Op Modifier and Type Method Description List<Op<?>>
ImageItem.BaseOp. getSources()
-
Uses of Op in VASSAL.build.module.map.boardPicker.board
Classes in VASSAL.build.module.map.boardPicker.board that implement Op Modifier and Type Class Description class
GridOp
class
SolidColorOp
Methods in VASSAL.build.module.map.boardPicker.board that return types with arguments of type Op Modifier and Type Method Description List<Op<?>>
GridOp. getSources()
List<Op<?>>
SolidColorOp. getSources()
-
Uses of Op in VASSAL.counters
Classes in VASSAL.counters that implement Op Modifier and Type Class Description protected static class
Labeler.HTMLLabelOp
protected static class
Labeler.LabelOp
Methods in VASSAL.counters that return types with arguments of type Op Modifier and Type Method Description List<Op<?>>
Labeler.LabelOp. getSources()
-
Uses of Op in VASSAL.tools.imageop
Subinterfaces of Op in VASSAL.tools.imageop Modifier and Type Interface Description interface
CropOp
AnImageOp
which crops its source.interface
GamePieceOp
interface
ImageOp
An abstract representation of an operation which may be applied to anImage
.interface
RotateOp
AnImageOp
which rotates its source about its center.interface
RotateScaleOp
AnImageOp
which both rotates and scales its source.interface
ScaleOp
AnImageOp
which scales its source.interface
SourceOp
AnImageOp
which provides a source.interface
SVGOp
AnImageOp
which produces images from SVG.Classes in VASSAL.tools.imageop that implement Op Modifier and Type Class Description class
AbstractOpImpl
An abstract representation of an operation which may be applied to anImage
.class
AbstractTiledOpImpl
The abstract base class forImageOp
s which support multiple tiles.class
AbstractTileOpImpl
The abstract base class forImageOp
s which are a single tile.class
CropOpBitmapImpl
AnImageOp
which crops its source.class
GamePieceOpImpl
class
ImageSourceOpBitmapImpl
AnImageOp
which uses a fixed image as its source.class
OrthoRotateOpBitmapImpl
class
RotateScaleOpBitmapImpl
AnImageOp
which rotates and scales its source.class
RotateScaleOpSVGImpl
AnImageOp
which rotates and scales its source.class
ScaleOpBitmapImpl
AnImageOp
which scales its source.class
ScaleOpTiledBitmapImpl
AnImageOp
which scales its source and cobbles scaled tiles from the tile cache.class
SourceOpBitmapImpl
AnImageOp
which loads an image from theDataArchive
.class
SourceOpDiskCacheBitmapImpl
AnImageOp
which loads tiles from the tile cache.class
SourceOpSVGImpl
AnImageOp
which loads an image from theDataArchive
.class
SourceOpTiledBitmapImpl
AnImageOp
which loads an image from theDataArchive
, but produces tiles loaded from the tile cache.class
SourceTileOpBitmapImpl
AnImageOp
for producing tiles directly from a source, without cobbling tiles from the source.class
SourceTileOpSVGImpl
AnImageOp
for producing tiles directly from a source, without cobbling tiles from the source.Methods in VASSAL.tools.imageop that return types with arguments of type Op Modifier and Type Method Description List<Op<?>>
CropOpBitmapImpl. getSources()
List<Op<?>>
GamePieceOpImpl. getSources()
List<Op<?>>
ImageSourceOpBitmapImpl. getSources()
List<Op<?>>
OrthoRotateOpBitmapImpl. getSources()
List<Op<?>>
RotateScaleOpBitmapImpl. getSources()
List<Op<?>>
RotateScaleOpSVGImpl. getSources()
List<Op<?>>
ScaleOpBitmapImpl. getSources()
List<Op<?>>
SourceOpBitmapImpl. getSources()
List<Op<?>>
SourceOpDiskCacheBitmapImpl. getSources()
List<Op<?>>
SourceOpSVGImpl. getSources()
List<Op<?>>
SourceTileOpBitmapImpl. getSources()
List<Op<?>>
SourceTileOpSVGImpl. getSources()
Methods in VASSAL.tools.imageop with parameters of type Op Modifier and Type Method Description void
Repainter. cancelled(Op<BufferedImage> op, CancellationException e)
void
Repainter. failed(Op<BufferedImage> op, ExecutionException e)
void
Repainter. interrupted(Op<BufferedImage> op, InterruptedException e)
void
Repainter. succeeded(Op<BufferedImage> op, BufferedImage img)
-
Uses of Op in VASSAL.tools.opcache
Classes in VASSAL.tools.opcache that implement Op Modifier and Type Class Description class
AbstractOpImpl<V>
An abstract representation of an operation.Fields in VASSAL.tools.opcache declared as Op Modifier and Type Field Description Op<V>
OpCache.Key. op
Methods in VASSAL.tools.opcache that return types with arguments of type Op Modifier and Type Method Description abstract List<Op<?>>
AbstractOpImpl. getSources()
Returns a list ofOp
s on which thisOp
depends.List<Op<?>>
Op. getSources()
Returns a list ofOp
s on which thisOp
depends.Methods in VASSAL.tools.opcache with parameters of type Op Modifier and Type Method Description void
OpObserver. cancelled(Op<V> op, CancellationException e)
Callback which is run when the observedOp
is cancelled.void
OpObserver. failed(Op<V> op, ExecutionException e)
Callback which is run when the observedOp
fails.void
OpObserver. interrupted(Op<V> op, InterruptedException e)
Callback which is run when the observedOp
is interrupted.void
OpObserver. succeeded(Op<V> op, V val)
Callback which is run when the observedOp
completes successfully.Constructors in VASSAL.tools.opcache with parameters of type Op Constructor Description Key(Op<V> op, int version)
Creates a new key for the givenOp
and version.