Source Code Cross Referenced for IIntroManager.java in  » IDE-Eclipse » ui-workbench » org » eclipse » ui » intro » 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 workbench » org.eclipse.ui.intro 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*******************************************************************************
002:         * Copyright (c) 2004, 2007 IBM Corporation and others.
003:         * All rights reserved. This program and the accompanying materials
004:         * are made available under the terms of the Eclipse Public License v1.0
005:         * which accompanies this distribution, and is available at
006:         * http://www.eclipse.org/legal/epl-v10.html
007:         *
008:         * Contributors:
009:         *     IBM Corporation - initial API and implementation
010:         *******************************************************************************/package org.eclipse.ui.intro;
011:
012:        import org.eclipse.ui.IWorkbenchWindow;
013:
014:        /**
015:         * Manages the intro part that introduces the product to new users.
016:         * The intro part is typically shown the first time a product is started up.
017:         * <p>
018:         * The initial behavior of the intro part is controlled by the application
019:         * from via the {@link org.eclipse.ui.application.WorkbenchWindowAdvisor#openIntro()}
020:         * method.
021:         * </p>
022:         * <p>
023:         * See {@link org.eclipse.ui.intro.IIntroPart} for details on where intro parts
024:         * come from.
025:         * </p>
026:         * <p>
027:         * This interface is not intended to be extended or implemented by clients.
028:         * </p>
029:         * 
030:         * @see org.eclipse.ui.IWorkbench#getIntroManager()
031:         * @since 3.0
032:         */
033:        public interface IIntroManager {
034:
035:            /**
036:             * Closes the given intro part.
037:             * 
038:             * @param part the intro part
039:             * @return <code>true</code> if the intro part was closed, and 
040:             * <code>false</code> otherwise.  <code>false</code> is returned 
041:             * if part is <code>null</code> or it is not the intro part returned
042:             * by {@link #getIntro()}.
043:             */
044:            public boolean closeIntro(IIntroPart part);
045:
046:            /**
047:             * Returns the intro part. Returns <code>null</code> if there is no intro
048:             * part, if it has been previously closed via {@link #closeIntro(IIntroPart)}
049:             * or if there is an intro part but {@link #showIntro(IWorkbenchWindow, boolean)} 
050:             * has not yet been called to create it.
051:             * 
052:             * @return the intro part, or <code>null</code> if none is available
053:             */
054:            public IIntroPart getIntro();
055:
056:            /**
057:             * Return whether an intro is available. Note that this checks whether
058:             * there is an applicable intro part that could be instantiated and shown
059:             * to the user. 
060:             * Use {@link #getIntro()} to discover whether an intro part has already
061:             * been created.
062:             * 
063:             * @return <code>true</code> if there is an intro that could be shown, and
064:             * <code>false</code> if there is no intro
065:             */
066:            public boolean hasIntro();
067:
068:            /**
069:             * Return the standby state of the given intro part.
070:             * 
071:             * @param part the intro part
072:             * @return <code>true</code> if the part in its partially
073:             * visible standy mode, and <code>false</code> if in its fully visible state.
074:             * <code>false</code> is returned if part is <code>null</code> or it is not 
075:             * the intro part returned by {@link #getIntro()}.    
076:             */
077:            boolean isIntroStandby(IIntroPart part);
078:
079:            /**
080:             * Sets the standby state of the given intro part. Intro part usually should
081:             * render themselves differently in the full and standby modes. In standby
082:             * mode, the part should be partially visible to the user but otherwise
083:             * allow them to work. In full mode, the part should be fully visible and
084:             * be the center of the user's attention.
085:             * <p>
086:             * This method does nothing if the part is <code>null</code> or is not 
087:             * the intro part returned by {@link #getIntro()}.
088:             * </p>
089:             * 
090:             * @param part the intro part, or <code>null</code>
091:             * @param standby <code>true</code> to put the part in its partially
092:             * visible standy mode, and <code>false</code> to make it fully visible.  
093:             */
094:            public void setIntroStandby(IIntroPart part, boolean standby);
095:
096:            /**
097:             * Shows the intro part in the given workbench window. If the intro part has
098:             * not been created yet, one will be created. If the intro part is currently
099:             * being shown in some workbench window, that other window is made active.
100:             * 
101:             * @param preferredWindow the preferred workbench window, or 
102:             * <code>null</code> to indicate the currently active workbench window
103:             * @param standby <code>true</code> to put the intro part in its partially
104:             * visible standy mode, and <code>false</code> to make it fully visible
105:             * @return the newly-created or existing intro part, or <code>null</code>
106:             * if no intro part is available or if <code>preferredWindow</code> is
107:             * <code>null</code> and there is no currently active workbench window
108:             */
109:            public IIntroPart showIntro(IWorkbenchWindow preferredWindow,
110:                    boolean standby);
111:
112:            /**
113:             * Returns <code>true</code> if there is an intro content detector and it
114:             * reports that new intro content is available.
115:             * 
116:             * @return <code>true</code> if new intro content is available
117:             * 
118:             * @since 3.3
119:             */
120:            public boolean isNewContentAvailable();
121:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.