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


01:        /*******************************************************************************
02:         * Copyright (c) 2004, 2006 IBM Corporation and others.
03:         * All rights reserved. This program and the accompanying materials
04:         * are made available under the terms of the Eclipse Public License v1.0
05:         * which accompanies this distribution, and is available at
06:         * http://www.eclipse.org/legal/epl-v10.html
07:         *
08:         * Contributors:
09:         *     IBM Corporation - initial API and implementation
10:         *******************************************************************************/package org.eclipse.ui.internal.preferences;
11:
12:        import java.util.Set;
13:
14:        /**
15:         * Eclipse provides many different classes and interfaces that map ids onto values and
16:         * send property change notifications (some examples are themes, preference stores,
17:         * xml nodes, property providers, and others). This interface is intended to provide
18:         * interoperability between these various classes. 
19:         * 
20:         * @since 3.1
21:         */
22:        public interface IPropertyMap {
23:
24:            /**
25:             * Returns the set of keys that are recognized by this property map
26:             * (optional operation). 
27:             * 
28:             * @return the set of valid keys for this map
29:             * @throws UnsupportedOperationException if this type of property map
30:             * cannot compute the set of valid keys
31:             * @since 3.1
32:             */
33:            public Set keySet();
34:
35:            /**
36:             * Returns the value of the given property. Returns null if the given
37:             * property does not exist, cannot be converted into the expected type,
38:             * or if the value of the property is null.
39:             * 
40:             * @param propertyId property ID to query
41:             * @param propertyType type of the expected return value
42:             * @return an object of the given propertyType or null if the property
43:             * does not exist or has the wrong type
44:             * @since 3.1
45:             */
46:            public Object getValue(String propertyId, Class propertyType);
47:
48:            /**
49:             * If this map represents the union of multiple property maps, this
50:             * returns true iff the property existed in every map in the union.
51:             * Always returns true if this map was not computed from the union
52:             * of multiple maps. 
53:             * 
54:             * @param propertyId
55:             * @return true iff the given property existed in every child map
56:             * @since 3.1
57:             */
58:            public boolean isCommonProperty(String propertyId);
59:
60:            /**
61:             * Returns true iff the given property exists.
62:             * 
63:             * @param propertyId
64:             * @return true iff the given property exists in this map
65:             * @since 3.1
66:             */
67:            public boolean propertyExists(String propertyId);
68:
69:            /**
70:             * Sets the value of the given property to the given value (optional 
71:             * operation). 
72:             * 
73:             * @param propertyId
74:             * @param newValue
75:             * @throws UnsupportedOperationException if this type of property map
76:             * is read-only
77:             * @since 3.1
78:             */
79:            public void setValue(String propertyId, Object newValue);
80:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.