Java Doc for JDesktopPane.java in  » Apache-Harmony-Java-SE » javax-package » javax » swing » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » javax package » javax.swing 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


javax.swing.JComponent
   javax.swing.JLayeredPane
      javax.swing.JDesktopPane

JDesktopPane
public class JDesktopPane extends JLayeredPane implements Accessible(Code)

JDesktopPane is a container used to create a virtual desktop.

Implementation Notes:

  • The serialVersionUID fields are explicitly declared as a performance optimization, not as a guarantee of serialization compatibility.

Inner Class :protected class AccessibleJDesktopPane extends AccessibleJComponent

Field Summary
final public static  intLIVE_DRAG_MODE
     Indicates that the entire content of the component should appear, when it is being dragged.
final public static  intOUTLINE_DRAG_MODE
     Indicates that an outline should appear instead of the entire content of the component, when it is being dragged.

Constructor Summary
public  JDesktopPane()
    

Method Summary
public  AccessibleContextgetAccessibleContext()
     Returns the accessible context for the desktop pane.
public  JInternalFrame[]getAllFrames()
     Returns all internal frames in the desktop pane including iconified frames.
public  JInternalFrame[]getAllFramesInLayer(int layer)
     Returns all internal frames in the specified layer.
public  DesktopManagergetDesktopManager()
     Returns the desktop manager.
public  intgetDragMode()
     Returns the style of dragging used by desktop pane.
public  JInternalFramegetSelectedFrame()
     Returns the currently active internal frame or null, if there is no active frame.
public  DesktopPaneUIgetUI()
     Returns the UI object for this component.
public  StringgetUIClassID()
     Returns the name of the L&F class that renders this component.
public  booleanisOpaque()
     Always returns true.
protected  StringparamString()
     Returns string representation of this desktop pane.
public  voidsetDesktopManager(DesktopManager m)
     Sets the desktop manager.
public  voidsetDragMode(int mode)
     Sets the style of dragging used by desktop pane.
public  voidsetSelectedFrame(JInternalFrame f)
     Sets the currently active internal frame.
public  voidsetUI(DesktopPaneUI ui)
     Sets the UI object for this component.
public  voidupdateUI()
    

Field Detail
LIVE_DRAG_MODE
final public static int LIVE_DRAG_MODE(Code)
Indicates that the entire content of the component should appear, when it is being dragged.



OUTLINE_DRAG_MODE
final public static int OUTLINE_DRAG_MODE(Code)
Indicates that an outline should appear instead of the entire content of the component, when it is being dragged.




Constructor Detail
JDesktopPane
public JDesktopPane()(Code)




Method Detail
getAccessibleContext
public AccessibleContext getAccessibleContext()(Code)
Returns the accessible context for the desktop pane. the accessible context for the desktop pane



getAllFrames
public JInternalFrame[] getAllFrames()(Code)
Returns all internal frames in the desktop pane including iconified frames. all internal frames in the desktop pane



getAllFramesInLayer
public JInternalFrame[] getAllFramesInLayer(int layer)(Code)
Returns all internal frames in the specified layer. Iconified frames are also taken into account.
Parameters:
  layer - the layer to search for internal frames all internal frames in the specified layer



getDesktopManager
public DesktopManager getDesktopManager()(Code)
Returns the desktop manager. the desktop manager



getDragMode
public int getDragMode()(Code)
Returns the style of dragging used by desktop pane. the used style of dragging



getSelectedFrame
public JInternalFrame getSelectedFrame()(Code)
Returns the currently active internal frame or null, if there is no active frame. the currently active internal frame or null



getUI
public DesktopPaneUI getUI()(Code)
Returns the UI object for this component. UI object for this component



getUIClassID
public String getUIClassID()(Code)
Returns the name of the L&F class that renders this component. the string "DesktopPaneUI"



isOpaque
public boolean isOpaque()(Code)
Always returns true. true



paramString
protected String paramString()(Code)
Returns string representation of this desktop pane. string representation of this desktop pane



setDesktopManager
public void setDesktopManager(DesktopManager m)(Code)
Sets the desktop manager.
Parameters:
  m - the desktop manager



setDragMode
public void setDragMode(int mode)(Code)
Sets the style of dragging used by desktop pane.
Parameters:
  mode - the style of dragging to use



setSelectedFrame
public void setSelectedFrame(JInternalFrame f)(Code)
Sets the currently active internal frame.
Parameters:
  f - the currently active internal frame



setUI
public void setUI(DesktopPaneUI ui)(Code)
Sets the UI object for this component.
Parameters:
  ui - the UI object to set



updateUI
public void updateUI()(Code)
Resets UI object with the default object from UIManager



Fields inherited from javax.swing.JLayeredPane
final public static Integer DEFAULT_LAYER(Code)(Java Doc)
final public static Integer DRAG_LAYER(Code)(Java Doc)
final public static Integer FRAME_CONTENT_LAYER(Code)(Java Doc)
final public static String LAYER_PROPERTY(Code)(Java Doc)
final public static Integer MODAL_LAYER(Code)(Java Doc)
final public static Integer PALETTE_LAYER(Code)(Java Doc)
final public static Integer POPUP_LAYER(Code)(Java Doc)

Methods inherited from javax.swing.JLayeredPane
protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public int getComponentCountInLayer(int layer)(Code)(Java Doc)
protected Hashtable<java.awt.Component, java.lang.Integer> getComponentToLayer()(Code)(Java Doc)
public Component[] getComponentsInLayer(int layer)(Code)(Java Doc)
public int getIndexOf(Component c)(Code)(Java Doc)
public int getLayer(Component c)(Code)(Java Doc)
public static int getLayer(JComponent c)(Code)(Java Doc)
public static JLayeredPane getLayeredPaneAbove(Component c)(Code)(Java Doc)
protected Integer getObjectForLayer(int layer)(Code)(Java Doc)
public int getPosition(Component c)(Code)(Java Doc)
public int highestLayer()(Code)(Java Doc)
protected int insertIndexForLayer(int layer, int position)(Code)(Java Doc)
public boolean isOptimizedDrawingEnabled()(Code)(Java Doc)
public int lowestLayer()(Code)(Java Doc)
public void moveToBack(Component c)(Code)(Java Doc)
public void moveToFront(Component c)(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public static void putLayer(JComponent c, int layer)(Code)(Java Doc)
public void remove(int index)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public void setLayer(Component c, int layer, int position)(Code)(Java Doc)
public void setLayer(Component c, int layer)(Code)(Java Doc)
public void setPosition(Component c, int position)(Code)(Java Doc)

Fields inherited from javax.swing.JComponent
final static String AUTOSCROLLS_PROPERTY_NAME(Code)(Java Doc)
final static String COMPONENT_POPUP_MENU_PROPERTY_NAME(Code)(Java Doc)
final static String INHERITS_POPUP_MENU_PROPERTY_NAME(Code)(Java Doc)
final static String NEXT_FOCUSABLE_PROPERTY_NAME(Code)(Java Doc)
final public static String TOOL_TIP_TEXT_KEY(Code)(Java Doc)
final static String UI_PROPERTY_NAME(Code)(Java Doc)
final public static int UNDEFINED_CONDITION(Code)(Java Doc)
final static String VERIFY_INPUT_PROPERTY_NAME(Code)(Java Doc)
final public static int WHEN_ANCESTOR_OF_FOCUSED_COMPONENT(Code)(Java Doc)
final public static int WHEN_FOCUSED(Code)(Java Doc)
final public static int WHEN_IN_FOCUSED_WINDOW(Code)(Java Doc)
protected AccessibleContext accessibleContext(Code)(Java Doc)
final Set<String> installablePropertiesExcluded(Code)(Java Doc)
protected EventListenerList listenerList(Code)(Java Doc)
protected transient ComponentUI ui(Code)(Java Doc)

Methods inherited from javax.swing.JComponent
public void addAncestorListener(AncestorListener ancestorListener)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc)
final void componentInputMapChanged(ComponentInputMap map)(Code)(Java Doc)
public void computeVisibleRect(Rectangle rect)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public JToolTip createToolTip()(Code)(Java Doc)
public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc)
protected void fireVetoableChange(String property, Object oldValue, Object newValue) throws PropertyVetoException(Code)(Java Doc)
public ActionListener getActionForKeyStroke(KeyStroke keyStroke)(Code)(Java Doc)
final public ActionMap getActionMap()(Code)(Java Doc)
final ActionMap getActionMap(boolean forceCreate)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public AncestorListener[] getAncestorListeners()(Code)(Java Doc)
public boolean getAutoscrolls()(Code)(Java Doc)
public Border getBorder()(Code)(Java Doc)
public Rectangle getBounds(Rectangle bounds)(Code)(Java Doc)
final public Object getClientProperty(Object key)(Code)(Java Doc)
protected Graphics getComponentGraphics(Graphics g)(Code)(Java Doc)
public JPopupMenu getComponentPopupMenu()(Code)(Java Doc)
public int getConditionForKeyStroke(KeyStroke keyStroke)(Code)(Java Doc)
public int getDebugGraphicsOptions()(Code)(Java Doc)
public static Locale getDefaultLocale()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public boolean getInheritsPopupMenu()(Code)(Java Doc)
final public InputMap getInputMap(int condition)(Code)(Java Doc)
final public InputMap getInputMap()(Code)(Java Doc)
final InputMap getInputMap(int condition, boolean forceCreate)(Code)(Java Doc)
public InputVerifier getInputVerifier()(Code)(Java Doc)
public Insets getInsets()(Code)(Java Doc)
public Insets getInsets(Insets insets)(Code)(Java Doc)
public T[] getListeners(Class<T> listenersClass)(Code)(Java Doc)
public Point getLocation(Point extLocation)(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Component getNextFocusableComponent()(Code)(Java Doc)
public Point getPopupLocation(MouseEvent event)(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public KeyStroke[] getRegisteredKeyStrokes()(Code)(Java Doc)
public JRootPane getRootPane()(Code)(Java Doc)
public Dimension getSize(Dimension extSize)(Code)(Java Doc)
public Point getToolTipLocation(MouseEvent event)(Code)(Java Doc)
public String getToolTipText()(Code)(Java Doc)
public String getToolTipText(MouseEvent event)(Code)(Java Doc)
public Container getTopLevelAncestor()(Code)(Java Doc)
public TransferHandler getTransferHandler()(Code)(Java Doc)
public String getUIClassID()(Code)(Java Doc)
public boolean getVerifyInputWhenFocusTarget()(Code)(Java Doc)
public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc)
public Rectangle getVisibleRect()(Code)(Java Doc)
public void grabFocus()(Code)(Java Doc)
boolean hasListener(Class<T> listenerType, EventListener l)(Code)(Java Doc)
boolean insideDoubleBuffering()(Code)(Java Doc)
public boolean isDoubleBuffered()(Code)(Java Doc)
public static boolean isLightweightComponent(Component component)(Code)(Java Doc)
public boolean isManagingFocus()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isOptimizedDrawingEnabled()(Code)(Java Doc)
public boolean isPaintingTile()(Code)(Java Doc)
public boolean isRequestFocusEnabled()(Code)(Java Doc)
public boolean isValidateRoot()(Code)(Java Doc)
public void paint(Graphics graphics)(Code)(Java Doc)
protected void paintBorder(Graphics graphics)(Code)(Java Doc)
protected void paintChildren(Graphics graphics)(Code)(Java Doc)
protected void paintComponent(Graphics graphics)(Code)(Java Doc)
void paintDoubleBuffered(Graphics g)(Code)(Java Doc)
public void paintImmediately(Rectangle rect)(Code)(Java Doc)
public void paintImmediately(int x, int y, int width, int height)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void printBorder(Graphics g)(Code)(Java Doc)
protected void printChildren(Graphics g)(Code)(Java Doc)
protected void printComponent(Graphics g)(Code)(Java Doc)
protected void processComponentKeyEvent(KeyEvent event)(Code)(Java Doc)
protected boolean processKeyBinding(KeyStroke keyStroke, KeyEvent keyEvent, int condition, boolean pressed)(Code)(Java Doc)
static boolean processKeyBindings(KeyEvent event, Component source)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent event)(Code)(Java Doc)
final public void putClientProperty(Object key, Object value)(Code)(Java Doc)
public void registerKeyboardAction(ActionListener action, String command, KeyStroke keyStroke, int condition)(Code)(Java Doc)
public void registerKeyboardAction(ActionListener action, KeyStroke keyStroke, int condition)(Code)(Java Doc)
public void removeAncestorListener(AncestorListener ancestorListener)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc)
public void repaint(Rectangle rect)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public boolean requestDefaultFocus()(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
public boolean requestFocus(boolean temporary)(Code)(Java Doc)
public boolean requestFocusInWindow()(Code)(Java Doc)
protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc)
public void resetKeyboardActions()(Code)(Java Doc)
public void revalidate()(Code)(Java Doc)
public void scrollRectToVisible(Rectangle rect)(Code)(Java Doc)
final public void setActionMap(ActionMap newActionMap)(Code)(Java Doc)
public void setAlignmentX(float alignment)(Code)(Java Doc)
public void setAlignmentY(float alignment)(Code)(Java Doc)
public void setAutoscrolls(boolean scrolls)(Code)(Java Doc)
public void setBorder(Border newBorder)(Code)(Java Doc)
public void setComponentPopupMenu(JPopupMenu popup)(Code)(Java Doc)
public void setDebugGraphicsOptions(int newDebugGraphicsOptions)(Code)(Java Doc)
public static void setDefaultLocale(Locale locale)(Code)(Java Doc)
public void setDoubleBuffered(boolean flag)(Code)(Java Doc)
public void setEnabled(boolean enabled)(Code)(Java Doc)
public void setInheritsPopupMenu(boolean value)(Code)(Java Doc)
final public void setInputMap(int condition, InputMap map)(Code)(Java Doc)
public void setInputVerifier(InputVerifier verifier)(Code)(Java Doc)
public void setNextFocusableComponent(Component component)(Code)(Java Doc)
public void setOpaque(boolean opaque)(Code)(Java Doc)
public void setRequestFocusEnabled(boolean enabled)(Code)(Java Doc)
public void setToolTipText(String text)(Code)(Java Doc)
public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc)
protected void setUI(ComponentUI newUI)(Code)(Java Doc)
public void setVerifyInputWhenFocusTarget(boolean verifyInput)(Code)(Java Doc)
public void unregisterKeyboardAction(KeyStroke keyStroke)(Code)(Java Doc)
public void update(Graphics graphics)(Code)(Java Doc)
public void updateUI()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.