Source Code Cross Referenced for ModalityClass.java in  » Testing » KeY » de » uka » ilkd » key » proof » mgt » 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 » Testing » KeY » de.uka.ilkd.key.proof.mgt 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // This file is part of KeY - Integrated Deductive Software Design
002:        // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
003:        //                         Universitaet Koblenz-Landau, Germany
004:        //                         Chalmers University of Technology, Sweden
005:        //
006:        // The KeY system is protected by the GNU General Public License. 
007:        // See LICENSE.TXT for details.
008:        /**
009:         * 
010:         */package de.uka.ilkd.key.proof.mgt;
011:
012:        import java.util.HashSet;
013:
014:        import de.uka.ilkd.key.logic.Name;
015:        import de.uka.ilkd.key.logic.op.*;
016:        import de.uka.ilkd.key.logic.sort.Sort;
017:
018:        /**
019:         * represents a class of modalities which are to be treated the same way 
020:         * by the AbstractMethodLemmaFactory. It provides access to a normal 
021:         * representative of the class (used to give concrete proof obligations for 
022:         * the method lemma) and schema modal operators representing the class (used 
023:         * in the method lemma taclets themselves).
024:         *
025:         */
026:        class ModalityClass {
027:
028:            /**
029:             * the standard pre-defined classes.
030:             */
031:            private final static ModalityClass[] DEFAULT_CLASSES = new ModalityClass[] {
032:                    new ModalityClass(new Modality[] { Op.DIA, Op.DIATRC }),
033:                    new ModalityClass(new Modality[] { Op.BOX, Op.BOXTRC,
034:                            Op.TOUTTRC }),
035:                    new ModalityClass(new Modality[] { Op.BOXTRA, Op.TOUTTRA }) };
036:
037:            private ModalOperatorSV schema;
038:            private Modality[] modalities;
039:
040:            /**
041:             * creates a modality class consisting of the given modalities. The first 
042:             * element of the argument array is the normal representative of the 
043:             * class. 
044:             * @param mods the array of modalities seen as one modality class
045:             */
046:            public ModalityClass(Modality[] mods) {
047:                HashSet s = new HashSet();
048:                for (int i = 0; i < mods.length; i++) {
049:                    s.add(mods[i]);
050:                }
051:                schema = (ModalOperatorSV) SchemaVariableFactory
052:                        .createOperatorSV(new Name(mods[0].name() + "_schema"),
053:                                Modality.class, Sort.FORMULA, 1, s);
054:                modalities = mods;
055:            }
056:
057:            /**
058:             * returns the normal representative from the pre-defined classes for the
059:             * given modality. If not found in the pre-defined classes the argument 
060:             * is returned
061:             */
062:            public static Modality getNormReprModality(Modality m) {
063:                for (int i = 0; i < DEFAULT_CLASSES.length; i++) {
064:                    if (DEFAULT_CLASSES[i].containsConcrete(m)) {
065:                        return DEFAULT_CLASSES[i].getNormRepr();
066:                    }
067:                }
068:                return m;
069:            }
070:
071:            /**
072:             * returns the schema operator from the pre-defined classes fitting to the
073:             * given modality. Of not found in the pre-defined classes the argument 
074:             * is returned
075:             */
076:            public static Operator getSchemaModality(Modality m) {
077:                for (int i = 0; i < DEFAULT_CLASSES.length; i++) {
078:                    if (DEFAULT_CLASSES[i].containsConcrete(m)) {
079:                        return DEFAULT_CLASSES[i].getSchema();
080:                    }
081:                }
082:                return m;
083:            }
084:
085:            /** returns the schema modal operator representing this modality class */
086:            public ModalOperatorSV getSchema() {
087:                return schema;
088:            }
089:
090:            /** returns the normal representative modality of this modality class */
091:            public Modality getNormRepr() {
092:                return modalities[0];
093:            }
094:
095:            /** returns true iff the modalities of this class include the given 
096:             * modality argument */
097:            public boolean containsConcrete(Modality mod) {
098:                return schema.operators().contains(mod);
099:            }
100:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.