Java Doc for StatusLineManager.java in  » IDE-Eclipse » jface » org » eclipse » jface » action » 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 » IDE Eclipse » jface » org.eclipse.jface.action 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.eclipse.jface.action.ContributionManager
      org.eclipse.jface.action.StatusLineManager

StatusLineManager
public class StatusLineManager extends ContributionManager implements IStatusLineManager(Code)
A status line manager is a contribution manager which realizes itself and its items in a status line control.

This class may be instantiated; it may also be subclassed if a more sophisticated layout is required.



Field Summary
final public static  StringBEGIN_GROUP
     Identifier of group marker used to position contributions at the beginning of the status line.
final public static  StringEND_GROUP
     Identifier of group marker used to position contributions at the end of the status line.
final public static  StringMIDDLE_GROUP
     Identifier of group marker used to position contributions in the middle of the status line.

Constructor Summary
public  StatusLineManager()
     Creates a new status line manager.

Method Summary
public  ControlcreateControl(Composite parent)
     Creates and returns this manager's status line control.
public  ControlcreateControl(Composite parent, int style)
     Creates and returns this manager's status line control.
public  voiddispose()
     Disposes of this status line manager and frees all allocated SWT resources. Notifies all contribution items of the dispose.
public  ControlgetControl()
     Returns the control used by this StatusLineManager.
public  IProgressMonitorgetProgressMonitor()
    
protected  IProgressMonitorgetProgressMonitorDelegate()
     Returns the progress monitor delegate.
public  booleanisCancelEnabled()
    
public  voidsetCancelEnabled(boolean enabled)
    
public  voidsetErrorMessage(String message)
    
public  voidsetErrorMessage(Image image, String message)
    
public  voidsetMessage(String message)
    
public  voidsetMessage(Image image, String message)
    
public  voidupdate(boolean force)
    

Field Detail
BEGIN_GROUP
final public static String BEGIN_GROUP(Code)
Identifier of group marker used to position contributions at the beginning of the status line.
since:
   3.0



END_GROUP
final public static String END_GROUP(Code)
Identifier of group marker used to position contributions at the end of the status line.
since:
   3.0



MIDDLE_GROUP
final public static String MIDDLE_GROUP(Code)
Identifier of group marker used to position contributions in the middle of the status line.
since:
   3.0




Constructor Detail
StatusLineManager
public StatusLineManager()(Code)
Creates a new status line manager. Use the createControl method to create the status line control.




Method Detail
createControl
public Control createControl(Composite parent)(Code)
Creates and returns this manager's status line control. Does not create a new control if one already exists.

Note: Since 3.0 the return type is Control. Before 3.0, the return type was the package-private class StatusLine.


Parameters:
  parent - the parent control the status line control



createControl
public Control createControl(Composite parent, int style)(Code)
Creates and returns this manager's status line control. Does not create a new control if one already exists.
Parameters:
  parent - the parent control
Parameters:
  style - the style for the control the status line control
since:
   3.0



dispose
public void dispose()(Code)
Disposes of this status line manager and frees all allocated SWT resources. Notifies all contribution items of the dispose. Note that this method does not clean up references between this status line manager and its associated contribution items. Use removeAll for that purpose.



getControl
public Control getControl()(Code)
Returns the control used by this StatusLineManager. the control used by this manager



getProgressMonitor
public IProgressMonitor getProgressMonitor()(Code)



getProgressMonitorDelegate
protected IProgressMonitor getProgressMonitorDelegate()(Code)
Returns the progress monitor delegate. Override this method to provide your own object used to handle progress. the IProgressMonitor delegate
since:
   3.0



isCancelEnabled
public boolean isCancelEnabled()(Code)



setCancelEnabled
public void setCancelEnabled(boolean enabled)(Code)



setErrorMessage
public void setErrorMessage(String message)(Code)



setErrorMessage
public void setErrorMessage(Image image, String message)(Code)



setMessage
public void setMessage(String message)(Code)



setMessage
public void setMessage(Image image, String message)(Code)



update
public void update(boolean force)(Code)



Methods inherited from org.eclipse.jface.action.ContributionManager
public void add(IAction action)(Code)(Java Doc)
public void add(IContributionItem item)(Code)(Java Doc)
protected boolean allowItem(IContributionItem itemToAdd)(Code)(Java Doc)
public void appendToGroup(String groupName, IAction action)(Code)(Java Doc)
public void appendToGroup(String groupName, IContributionItem item)(Code)(Java Doc)
protected void dumpStatistics()(Code)(Java Doc)
public IContributionItem find(String id)(Code)(Java Doc)
public IContributionItem[] getItems()(Code)(Java Doc)
public IContributionManagerOverrides getOverrides()(Code)(Java Doc)
public int getSize()(Code)(Java Doc)
protected boolean hasDynamicItems()(Code)(Java Doc)
public int indexOf(String id)(Code)(Java Doc)
protected int indexOf(IContributionItem item)(Code)(Java Doc)
public void insert(int index, IContributionItem item)(Code)(Java Doc)
public void insertAfter(String ID, IAction action)(Code)(Java Doc)
public void insertAfter(String ID, IContributionItem item)(Code)(Java Doc)
public void insertBefore(String ID, IAction action)(Code)(Java Doc)
public void insertBefore(String ID, IContributionItem item)(Code)(Java Doc)
protected void internalSetItems(IContributionItem[] items)(Code)(Java Doc)
public boolean isDirty()(Code)(Java Doc)
public boolean isEmpty()(Code)(Java Doc)
protected void itemAdded(IContributionItem item)(Code)(Java Doc)
protected void itemRemoved(IContributionItem item)(Code)(Java Doc)
public void markDirty()(Code)(Java Doc)
public void prependToGroup(String groupName, IAction action)(Code)(Java Doc)
public void prependToGroup(String groupName, IContributionItem item)(Code)(Java Doc)
public IContributionItem remove(String ID)(Code)(Java Doc)
public IContributionItem remove(IContributionItem item)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public boolean replaceItem(String identifier, IContributionItem replacementItem)(Code)(Java Doc)
protected void setDirty(boolean dirty)(Code)(Java Doc)
public void setOverrides(IContributionManagerOverrides newOverrides)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.