ImageCapabilitiespublic class ImageCapabilities extends Object implements CloneableCapabilities and properties of images. |
Fields Summary |
---|
private boolean | accelerated |
Constructors Summary |
---|
public ImageCapabilities(boolean accelerated)Creates a new object for specifying image capabilities.
this.accelerated = accelerated;
|
Methods Summary |
---|
public java.lang.Object | clone()
try {
return super.clone();
} catch (CloneNotSupportedException e) {
// Since we implement Cloneable, this should never happen
throw new InternalError();
}
| public boolean | isAccelerated()Returns true if the object whose capabilities are
encapsulated in this ImageCapabilities can be or is
accelerated.
return accelerated;
| public boolean | isTrueVolatile()Returns true if the VolatileImage
described by this ImageCapabilities can lose
its surfaces.
return false;
|
|