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


001:        /*******************************************************************************
002:         * Copyright (c) 2000, 2005 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.jdt.launching;
011:
012:        import org.eclipse.jdt.internal.launching.LaunchingPlugin;
013:
014:        /**
015:         * A VM install changed listener is notified when
016:         * the workspace default VM install changes, or when an attribute of
017:         * a specific VM install changes.
018:         * Listeners register with <code>JavaRuntime</code>.
019:         * <p>
020:         * Clients may implement this interface.
021:         * </p>
022:         * @since 2.0
023:         */
024:        public interface IVMInstallChangedListener {
025:
026:            /**
027:             * Property constant indicating the library locations associated
028:             * with a VM install have changed.
029:             */
030:            public static final String PROPERTY_LIBRARY_LOCATIONS = LaunchingPlugin
031:                    .getUniqueIdentifier()
032:                    + ".PROPERTY_LIBRARY_LOCATIONS"; //$NON-NLS-1$
033:
034:            /**
035:             * Property constant indicating the name associated
036:             * with a VM install has changed.
037:             */
038:            public static final String PROPERTY_NAME = LaunchingPlugin
039:                    .getUniqueIdentifier()
040:                    + ".PROPERTY_NAME"; //$NON-NLS-1$
041:
042:            /**
043:             * Property constant indicating the install location of
044:             * a VM install has changed.
045:             */
046:            public static final String PROPERTY_INSTALL_LOCATION = LaunchingPlugin
047:                    .getUniqueIdentifier()
048:                    + ".PROPERTY_INSTALL_LOCATION"; //$NON-NLS-1$
049:
050:            /**
051:             * Property constant indicating the Javadoc location associated
052:             * with a VM install has changed.
053:             */
054:            public static final String PROPERTY_JAVADOC_LOCATION = LaunchingPlugin
055:                    .getUniqueIdentifier()
056:                    + ".PROPERTY_JAVADOC_LOCATION"; //$NON-NLS-1$
057:
058:            /**
059:             * Property constant indicating the VM arguments associated
060:             * with a VM install has changed.
061:             * 
062:             * @since 3.2
063:             */
064:            public static final String PROPERTY_VM_ARGUMENTS = LaunchingPlugin
065:                    .getUniqueIdentifier()
066:                    + ".PROPERTY_VM_ARGUMENTS"; //$NON-NLS-1$
067:
068:            /**
069:             * Notification that the workspace default VM install
070:             * has changed.
071:             * 
072:             * @param previous the VM install that was previously assigned
073:             * 	to the workspace, possibly <code>null</code>
074:             * @param current the VM install that is currently assigned to the
075:             * 	workspace, possibly <code>null</code>
076:             */
077:            public void defaultVMInstallChanged(IVMInstall previous,
078:                    IVMInstall current);
079:
080:            /**
081:             * Notification that a property of a VM install has changed.
082:             * 
083:             * @param event event describing the change. The VM that has changed
084:             * 	is the source object associated with the event.
085:             */
086:            public void vmChanged(PropertyChangeEvent event);
087:
088:            /**
089:             * Notification that a VM has been created.
090:             * 
091:             * @param vm the vm that has been created
092:             */
093:            public void vmAdded(IVMInstall vm);
094:
095:            /**
096:             * Notification that a VM has been disposed.
097:             * 
098:             * @param vm the vm that has been disposed
099:             */
100:            public void vmRemoved(IVMInstall vm);
101:
102:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.