This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.awt
class ImageCapabilities

java.lang.Object extended by java.awt.ImageCapabilities
All Implemented Interfaces:
Cloneable

public class ImageCapabilities
extends Object
implements Cloneable

Capabilities and properties of images.


Constructor Summary
ImageCapabilities(boolean accelerated)

          Creates a new object for specifying image capabilities.
 
Method Summary
 Object

          Creates and returns a copy of this object.
 boolean

          Returns true if the object whose capabilities are encapsulated in this ImageCapabilities can be or is accelerated.
 boolean

          Returns true if the VolatileImage described by this ImageCapabilities can lose its surfaces.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImageCapabilities

public ImageCapabilities(boolean accelerated)
Creates a new object for specifying image capabilities.

Parameters:
accelerated - whether or not an accelerated image is desired
Method Detail

clone

public Object clone()
Overrides:
clone in class Object
Returns:
a copy of this ImageCapabilities object.

isAccelerated

public boolean isAccelerated()
Returns true if the object whose capabilities are encapsulated in this ImageCapabilities can be or is accelerated.

Returns:
whether or not an image can be, or is, accelerated. There are various platform-specific ways to accelerate an image, including pixmaps, VRAM, AGP. This is the general acceleration method (as opposed to residing in system memory).

isTrueVolatile

public boolean isTrueVolatile()
Returns true if the VolatileImage described by this ImageCapabilities can lose its surfaces.

Returns:
whether or not a volatile image is subject to losing its surfaces at the whim of the operating system.


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.