< prev index next >

src/java.desktop/share/classes/sun/awt/HeadlessToolkit.java

Print this page




 155     public Dimension getBestCursorSize(int preferredWidth, int preferredHeight)
 156         throws HeadlessException {
 157         throw new HeadlessException();
 158     }
 159 
 160     @Override
 161     public int getMaximumCursorColors()
 162         throws HeadlessException {
 163         throw new HeadlessException();
 164     }
 165 
 166     @Override
 167     public <T extends DragGestureRecognizer> T
 168         createDragGestureRecognizer(Class<T> abstractRecognizerClass,
 169                                     DragSource ds, Component c,
 170                                     int srcActions, DragGestureListener dgl)
 171     {
 172         return null;
 173     }
 174 
 175     public int getScreenHeight()
 176         throws HeadlessException {
 177         throw new HeadlessException();
 178     }
 179 
 180     public int getScreenWidth()
 181         throws HeadlessException {
 182         throw new HeadlessException();
 183     }
 184 
 185     @Override
 186     public Dimension getScreenSize()
 187         throws HeadlessException {
 188         throw new HeadlessException();
 189     }
 190 
 191     @Override
 192     public Insets getScreenInsets(GraphicsConfiguration gc)
 193         throws HeadlessException {
 194         throw new HeadlessException();
 195     }
 196 
 197     @Override
 198     public void setDynamicLayout(boolean dynamic)
 199         throws HeadlessException {
 200         throw new HeadlessException();
 201     }
 202 
 203     @Override
 204     protected boolean isDynamicLayoutSet()




 155     public Dimension getBestCursorSize(int preferredWidth, int preferredHeight)
 156         throws HeadlessException {
 157         throw new HeadlessException();
 158     }
 159 
 160     @Override
 161     public int getMaximumCursorColors()
 162         throws HeadlessException {
 163         throw new HeadlessException();
 164     }
 165 
 166     @Override
 167     public <T extends DragGestureRecognizer> T
 168         createDragGestureRecognizer(Class<T> abstractRecognizerClass,
 169                                     DragSource ds, Component c,
 170                                     int srcActions, DragGestureListener dgl)
 171     {
 172         return null;
 173     }
 174 










 175     @Override
 176     public Dimension getScreenSize()
 177         throws HeadlessException {
 178         throw new HeadlessException();
 179     }
 180 
 181     @Override
 182     public Insets getScreenInsets(GraphicsConfiguration gc)
 183         throws HeadlessException {
 184         throw new HeadlessException();
 185     }
 186 
 187     @Override
 188     public void setDynamicLayout(boolean dynamic)
 189         throws HeadlessException {
 190         throw new HeadlessException();
 191     }
 192 
 193     @Override
 194     protected boolean isDynamicLayoutSet()


< prev index next >