Source Code Cross Referenced for ClassDS.java in  » Science » Cougaar12_4 » org » cougaar » qos » qrs » 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 » Science » Cougaar12_4 » org.cougaar.qos.qrs 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:
03:         * <copyright>
04:         *  
05:         *  Copyright 2002-2007 BBNT Solutions, LLC
06:         *  under sponsorship of the Defense Advanced Research Projects
07:         *  Agency (DARPA).
08:         * 
09:         *  You can redistribute this software and/or modify it under the
10:         *  terms of the Cougaar Open Source License as published on the
11:         *  Cougaar Open Source Website (www.cougaar.org).
12:         * 
13:         *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
14:         *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
15:         *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
16:         *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
17:         *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18:         *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
19:         *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20:         *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21:         *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22:         *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23:         *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24:         *  
25:         * </copyright>
26:
27:         */
28:
29:        package org.cougaar.qos.qrs;
30:
31:        /**
32:         * A ResourceContext for a Class.
33:         */
34:        public class ClassDS extends ResourceContext {
35:            static void register() {
36:                ContextInstantiater cinst = new AbstractContextInstantiater() {
37:                    public ResourceContext instantiateContext(
38:                            String[] parameters, ResourceContext parent)
39:                            throws ResourceContext.ParameterError {
40:                        return new ClassDS(parameters, parent);
41:                    }
42:
43:                };
44:                registerContextInstantiater("Class", cinst);
45:            }
46:
47:            private static final String CLASS_NAME = "ClassName";
48:            private static final String INTERFACE_NAME = "InterfaceName";
49:            private static final String METHODS = "Methods";
50:
51:            // Host Classes can be the first element in a path. They have
52:            // no parent or context other than the root.
53:            protected ResourceContext preferredParent(RSS root) {
54:                return root;
55:            }
56:
57:            protected DataFormula instantiateFormula(String kind) {
58:                return null;
59:            }
60:
61:            /**
62:             * The parameters should contain one string, the name of the class
63:             */
64:            protected void verifyParameters(String[] parameters)
65:                    throws ParameterError {
66:                if (parameters == null || parameters.length < 2) {
67:                    throw new ParameterError(
68:                            "ClassDS: wrong number of parameters");
69:                } else {
70:                    bindSymbolValue(CLASS_NAME, parameters[0]);
71:                    bindSymbolValue(INTERFACE_NAME, parameters[1]);
72:                    ResourceContext[] methods = new ResourceContext[parameters.length - 2];
73:                    // The rest of the parameters are method names
74:                    for (int i = 2; i < parameters.length; i++) {
75:                        // Make a context for the method name
76:                        String[] params = { parameters[i] };
77:                        methods[i - 2] = resolveSpec("Method", params);
78:                    }
79:                    bindSymbolValue(METHODS, methods);
80:
81:                    // For testing deflection
82:                    bindSymbolValue("Foo", new Double(10.0));
83:                }
84:            }
85:
86:            private ClassDS(String[] parameters, ResourceContext parent)
87:                    throws ParameterError {
88:                super(parameters, parent);
89:            }
90:
91:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.