Source Code Cross Referenced for ModelAccessFacade.java in  » UML » AndroMDA-3.2 » org » andromda » core » metafacade » 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 » UML » AndroMDA 3.2 » org.andromda.core.metafacade 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package org.andromda.core.metafacade;
02:
03:        import java.util.Collection;
04:
05:        import org.andromda.core.configuration.Filters;
06:
07:        /**
08:         * <p/>
09:         * Provides access to a model loaded by a Repository and made available to be used to retrieve information about
10:         * model elements and metafacades. </p>
11:         * <p/>
12:         * Models can be instances of any metamodel. The most common models will be UML models. This interface is an
13:         * abstraction. Any model that implements this interface can be used with AndroMDA. </p>
14:         * <p/>
15:         * Design goal: This class should only contain the <b>minimum amount of methods </b> that will be needed such that the
16:         * AndroMDA core can deal with it. All other stuff should be done in cartridge-specific classes!!! So, please don't make
17:         * this class grow! </p>
18:         *
19:         * @author <a href="http://www.mbohlen.de">Matthias Bohlen </a>
20:         * @author Chad Brandon
21:         */
22:        public interface ModelAccessFacade {
23:            /**
24:             * Sets the object that represents the entire model.
25:             *
26:             * @param model the model to set.
27:             */
28:            public void setModel(Object model);
29:
30:            /**
31:             * Returns an object that represents the entire model. Data type is defined by the implementor of this interface.
32:             *
33:             * @return the metaclass model.
34:             */
35:            public Object getModel();
36:
37:            /**
38:             * Returns the name of a metafacade (whatever that means for a concrete model).
39:             *
40:             * @param metafacade the metafacade from which to retrieve the name.
41:             * @return String containing the name
42:             */
43:            public String getName(Object metafacade);
44:
45:            /**
46:             * Returns the package name of a model element (whatever that means for a concrete model).
47:             *
48:             * @param modelElement the model element
49:             * @return String containing the name
50:             */
51:            public String getPackageName(Object modelElement);
52:
53:            /**
54:             * Sets the model packages instance which contains the information about what
55:             * packages should and should not be filtered out.  The model access facade
56:             * instance then uses this information to provide any filtering by package when
57:             * calling {@link #getModelElements()} and {@link #findByStereotype(String)}.
58:             *
59:             * @param modelPackages the model packages by which to filter.
60:             */
61:            public void setPackageFilter(Filters modelPackages);
62:
63:            /**
64:             * Returns a collection of stereotype names for a modelElement (whatever that means for a concrete model).
65:             *
66:             * @param modelElement the modelElement
67:             * @return Collection of Strings with stereotype names
68:             */
69:            public Collection getStereotypeNames(Object modelElement);
70:
71:            /**
72:             * Finds all the model elements that have the specified <code>stereotype</code> (with any filtering
73:             * applied from the information provided by {@link #setPackageFilter(ModelPackages)}).
74:             *
75:             * @param stereotype the name of the stereotype, they are matched without regard to case.
76:             * @return Collection of model elements having the given stereotype
77:             */
78:            public Collection findByStereotype(String stereotype);
79:
80:            /**
81:             * Returns all elements from the model (with any filtering
82:             * applied from the information provided by {@link #setPackageFilter(ModelPackages)}).
83:             *
84:             * @return Collection of all metafacades
85:             */
86:            public Collection getModelElements();
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.