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 classImageItem.BaseOpMethods 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 classGridOpclassSolidColorOpMethods 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 classLabeler.HTMLLabelOpprotected static classLabeler.LabelOpMethods 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 interfaceCropOpAnImageOpwhich crops its source.interfaceGamePieceOpinterfaceImageOpAn abstract representation of an operation which may be applied to anImage.interfaceRotateOpAnImageOpwhich rotates its source about its center.interfaceRotateScaleOpAnImageOpwhich both rotates and scales its source.interfaceScaleOpAnImageOpwhich scales its source.interfaceSourceOpAnImageOpwhich provides a source.interfaceSVGOpAnImageOpwhich produces images from SVG.Classes in VASSAL.tools.imageop that implement Op Modifier and Type Class Description classAbstractOpImplAn abstract representation of an operation which may be applied to anImage.classAbstractTiledOpImplThe abstract base class forImageOps which support multiple tiles.classAbstractTileOpImplThe abstract base class forImageOps which are a single tile.classCropOpBitmapImplAnImageOpwhich crops its source.classGamePieceOpImplclassImageSourceOpBitmapImplAnImageOpwhich uses a fixed image as its source.classOrthoRotateOpBitmapImplclassRotateScaleOpBitmapImplAnImageOpwhich rotates and scales its source.classRotateScaleOpSVGImplAnImageOpwhich rotates and scales its source.classScaleOpBitmapImplAnImageOpwhich scales its source.classScaleOpTiledBitmapImplAnImageOpwhich scales its source and cobbles scaled tiles from the tile cache.classSourceOpBitmapImplAnImageOpwhich loads an image from theDataArchive.classSourceOpDiskCacheBitmapImplAnImageOpwhich loads tiles from the tile cache.classSourceOpSVGImplAnImageOpwhich loads an image from theDataArchive.classSourceOpTiledBitmapImplAnImageOpwhich loads an image from theDataArchive, but produces tiles loaded from the tile cache.classSourceTileOpBitmapImplAnImageOpfor producing tiles directly from a source, without cobbling tiles from the source.classSourceTileOpSVGImplAnImageOpfor 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 voidRepainter. cancelled(Op<BufferedImage> op, CancellationException e)voidRepainter. failed(Op<BufferedImage> op, ExecutionException e)voidRepainter. interrupted(Op<BufferedImage> op, InterruptedException e)voidRepainter. 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 classAbstractOpImpl<V>An abstract representation of an operation.Fields in VASSAL.tools.opcache declared as Op Modifier and Type Field Description Op<V>OpCache.Key. opMethods 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 ofOps on which thisOpdepends.List<Op<?>>Op. getSources()Returns a list ofOps on which thisOpdepends.Methods in VASSAL.tools.opcache with parameters of type Op Modifier and Type Method Description voidOpObserver. cancelled(Op<V> op, CancellationException e)Callback which is run when the observedOpis cancelled.voidOpObserver. failed(Op<V> op, ExecutionException e)Callback which is run when the observedOpfails.voidOpObserver. interrupted(Op<V> op, InterruptedException e)Callback which is run when the observedOpis interrupted.voidOpObserver. succeeded(Op<V> op, V val)Callback which is run when the observedOpcompletes 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 givenOpand version.