HomeSort by relevance Sort by last modified time
    Searched defs:HeadlessException (Results 1 - 4 of 4) sorted by null

  /frameworks/base/awt/java/awt/
HeadlessException.java 25 * The HeadlessException class provides notifications and error messages when
31 public class HeadlessException extends UnsupportedOperationException {
41 public HeadlessException() {
51 public HeadlessException(String msg) {
HeadlessGraphicsEnvironment.java 21 import java.awt.HeadlessException;
38 * @return true, if HeadlessException will be thrown from areas of the
51 * @throws HeadlessException
55 public GraphicsDevice getDefaultScreenDevice() throws HeadlessException {
56 throw new HeadlessException();
64 * @throws HeadlessException
68 public GraphicsDevice[] getScreenDevices() throws HeadlessException {
69 throw new HeadlessException();
HeadlessToolkit.java 51 * HeadlessException { throw new HeadlessException(); }
53 * HeadlessException { throw new HeadlessException(); }
55 * createCheckboxMenuItem(CheckboxMenuItem a0) throws HeadlessException {
56 * throw new HeadlessException(); }
58 * HeadlessException { throw new HeadlessException(); } public Cursor
60 * HeadlessException { throw new HeadlessException(); }
    [all...]
Toolkit.java 200 * A lot of methods must throw HeadlessException if
203 * @throws HeadlessException
206 static void checkHeadless() throws HeadlessException {
208 throw new HeadlessException();
510 * @throws HeadlessException
513 public abstract ColorModel getColorModel() throws HeadlessException;
604 * @throws HeadlessException
607 public abstract int getScreenResolution() throws HeadlessException;
613 * @throws HeadlessException
616 public abstract Dimension getScreenSize() throws HeadlessException;
    [all...]

Completed in 453 milliseconds