Java Doc for ICompositeCheatSheetTask.java in  » IDE-Eclipse » ui » org » eclipse » ui » internal » provisional » cheatsheets » 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 » ui » org.eclipse.ui.internal.provisional.cheatsheets 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.ui.internal.provisional.cheatsheets.ICompositeCheatSheetTask

All known Subclasses:   org.eclipse.ui.internal.cheatsheets.composite.model.AbstractTask,
ICompositeCheatSheetTask
public interface ICompositeCheatSheetTask (Code)
A task within a composite cheat sheet.

This interface is not intended to be implemented by clients.



Field Summary
final public static  intCOMPLETED
     The constant that indicates that the task has been completed.
final public static  intIN_PROGRESS
     The constant that indicates that the task is in progress.
final public static  intNOT_STARTED
     The constant that indicates that the task has not been processed yet.
final public static  intSKIPPED
     The constant that indicates that the task has been skipped.


Method Summary
public  StringgetCompletionMessage()
    
public  ICompositeCheatSheetgetCompositeCheatSheet()
    
public  StringgetDescription()
     Returns the description of the task.
public  StringgetId()
    
public  StringgetKind()
     Returns the kind of the task editor or task group.
public  StringgetName()
    
public  DictionarygetParameters()
     The task parameters are used to configure the task editor with data meaningful to an editor of this kind.
public  ITaskGroupgetParent()
    
public  ICompositeCheatSheetTask[]getRequiredTasks()
     get the tasks which are required to be completed before this task is started.
public  intgetState()
    
public  ICompositeCheatSheetTask[]getSubtasks()
     Get the subtasks of this task.
public  booleanisSkippable()
     Test whether this task can be skipped.
public  booleanrequiredTasksCompleted()
     Determine whether the required tasks for this task have all been completed.

Field Detail
COMPLETED
final public static int COMPLETED(Code)
The constant that indicates that the task has been completed.



IN_PROGRESS
final public static int IN_PROGRESS(Code)
The constant that indicates that the task is in progress.



NOT_STARTED
final public static int NOT_STARTED(Code)
The constant that indicates that the task has not been processed yet.



SKIPPED
final public static int SKIPPED(Code)
The constant that indicates that the task has been skipped.





Method Detail
getCompletionMessage
public String getCompletionMessage()(Code)
Gets the text to be displayed when this task is completed a plain String, or XML markup that can be understood by FormText widget.
See Also:   org.eclipse.ui.forms.widgets.FormText



getCompositeCheatSheet
public ICompositeCheatSheet getCompositeCheatSheet()(Code)
Get the enclosing composite cheat sheet the composite cheat sheet which contains this task



getDescription
public String getDescription()(Code)
Returns the description of the task. a plain String, or XML markup that can be understood by FormText widget.
See Also:   org.eclipse.ui.forms.widgets.FormText



getId
public String getId()(Code)
the unique identifier of this task.



getKind
public String getKind()(Code)
Returns the kind of the task editor or task group. task editor kind or null if no editoris assoticated with this task.



getName
public String getName()(Code)
the translatable name of the task.



getParameters
public Dictionary getParameters()(Code)
The task parameters are used to configure the task editor with data meaningful to an editor of this kind. the parameter names and values as specified in thecomposite cheatsheet content file.



getParent
public ITaskGroup getParent()(Code)
Get the parent task group The task group which contains this task or null if this is the root of the composite cheat sheet.



getRequiredTasks
public ICompositeCheatSheetTask[] getRequiredTasks()(Code)
get the tasks which are required to be completed before this task is started. an array of tasks that must be completedbefore this task can be started. The array will beempty if this tasks is independent of other tasks.



getState
public int getState()(Code)
Get the state of this task NOT_STARTED, IN_PROGRESS, SKIPPED or COMPLETED.



getSubtasks
public ICompositeCheatSheetTask[] getSubtasks()(Code)
Get the subtasks of this task. Each subtask may be a task group or editable task. If the task is an editable task there will be no children and an empty array will be returned. an array of subtasks for this task



isSkippable
public boolean isSkippable()(Code)
Test whether this task can be skipped. Skippable tasks are optional tasks which are identified in the content file by having the attribute skip = "true". Only skippable tasks can be skipped. true if this task has the skip attribute set to true in the content file.



requiredTasksCompleted
public boolean requiredTasksCompleted()(Code)
Determine whether the required tasks for this task have all been completed. true if there are noi required tasks or all required tasks have been completed.



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