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


01:        package org.eclipse.ui.examples.jobs.views;
02:
03:        import org.eclipse.jface.viewers.TreeViewer;
04:        import org.eclipse.swt.SWT;
05:        import org.eclipse.swt.events.SelectionAdapter;
06:        import org.eclipse.swt.events.SelectionEvent;
07:        import org.eclipse.swt.layout.GridData;
08:        import org.eclipse.swt.layout.GridLayout;
09:        import org.eclipse.swt.widgets.Button;
10:        import org.eclipse.swt.widgets.Composite;
11:        import org.eclipse.ui.model.WorkbenchLabelProvider;
12:        import org.eclipse.ui.part.ViewPart;
13:
14:        /**
15:         * This sample class demonstrates how to plug-in a new workbench view. The view
16:         * shows data obtained from the model. The sample creates a dummy model on the
17:         * fly, but a real implementation would connect to the model available either
18:         * in this or another plug-in (e.g. the workspace). The view is connected to
19:         * the model using a content provider.
20:         * <p>
21:         * The view uses a label provider to define how model objects should be
22:         * presented in the view. Each view can present the same model objects using
23:         * different labels and icons, if needed. Alternatively, a single label
24:         * provider can be shared between views in order to ensure that objects of the
25:         * same type are presented in the same way everywhere.
26:         * <p>
27:         */
28:        public class LazyTreeView extends ViewPart {
29:            protected TreeViewer viewer;
30:            protected Button serializeButton, batchButton;
31:
32:            /* (non-Javadoc)
33:             * @see org.eclipse.ui.IWorkbenchPart#createPartControl(org.eclipse.swt.widgets.Composite)
34:             */
35:            public void createPartControl(Composite top) {
36:                Composite parent = new Composite(top, SWT.NONE);
37:                GridLayout layout = new GridLayout();
38:                layout.marginHeight = 0;
39:                layout.marginWidth = 0;
40:                parent.setLayout(layout);
41:                GridData data = new GridData(GridData.FILL_BOTH);
42:                data.grabExcessHorizontalSpace = true;
43:                data.grabExcessVerticalSpace = true;
44:                parent.setLayoutData(data);
45:                //		parent.setBackground(WorkbenchColors.getSystemColor(SWT.COLOR_WHITE));
46:                serializeButton = new Button(parent, SWT.CHECK | SWT.FLAT);
47:                serializeButton.setText("Serialize fetch jobs"); //$NON-NLS-1$
48:                //		serializeButton.setBackground(WorkbenchColors.getSystemColor(SWT.COLOR_WHITE));
49:                serializeButton.setSelection(SlowElementAdapter
50:                        .isSerializeFetching());
51:                serializeButton.addSelectionListener(new SelectionAdapter() {
52:                    public void widgetSelected(SelectionEvent e) {
53:                        SlowElementAdapter.setSerializeFetching(serializeButton
54:                                .getSelection());
55:                    }
56:                });
57:                serializeButton.setLayoutData(new GridData(
58:                        GridData.FILL_HORIZONTAL));
59:                batchButton = new Button(parent, SWT.CHECK | SWT.FLAT);
60:                batchButton.setText("Batch returned children"); //$NON-NLS-1$
61:                //		batchButton.setBackground(WorkbenchColors.getSystemColor(SWT.COLOR_WHITE));
62:                serializeButton.setSelection(SlowElementAdapter
63:                        .isBatchFetchedChildren());
64:                batchButton.addSelectionListener(new SelectionAdapter() {
65:                    public void widgetSelected(SelectionEvent e) {
66:                        SlowElementAdapter.setBatchFetchedChildren(batchButton
67:                                .getSelection());
68:                    }
69:                });
70:                batchButton
71:                        .setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
72:                viewer = new TreeViewer(parent, SWT.MULTI | SWT.H_SCROLL
73:                        | SWT.V_SCROLL);
74:                viewer.setContentProvider(new DeferredContentProvider());
75:                viewer.setLabelProvider(new WorkbenchLabelProvider());
76:                viewer.setInput(new SlowElement("root")); //$NON-NLS-1$
77:                viewer.getTree()
78:                        .setLayoutData(new GridData(GridData.FILL_BOTH));
79:            }
80:
81:            /**
82:             * Passing the focus request to the viewer's control.
83:             */
84:            public void setFocus() {
85:                viewer.getControl().setFocus();
86:            }
87:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.