Java Doc for FunctionalityOnModel.java in  » Testing » KeY » de » uka » ilkd » key » casetool » 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.casetool 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   de.uka.ilkd.key.casetool.FunctionalityOnModel

FunctionalityOnModel
public class FunctionalityOnModel (Code)




Method Summary
protected static  ProgramVariablebuildExcVar(JavaInfo javaInfo)
    
protected static  ListOfParsableVariablebuildParamVars(ModelMethod modelMethod, JavaInfo javaInfo)
    
protected static  ProgramVariablebuildResultVar(ModelMethod modelMethod, JavaInfo javaInfo)
    
protected static  LogicVariablebuildSelfVarAsLogicVar(ModelClass modelClass, JavaInfo javaInfo)
    
public static  StringcomputeSpecification(ModelMethod modelMethod)
     Computes and displays the specification of the method. Tries to compute the strongest specification (pre and postcondition) of aMethRepr.
Parameters:
  modelMethod - the method whose specification to compute.
public static  StringparseMethodSpec(ModelMethod modelMethod)
     Starts the prover with an "EnsuresPost" proof obligation.
public static  StringparseOneInvariant(UMLModelClass aReprModelClass)
     parse the invariant of a class if available.
public static  StringparseOneThroughout(UMLModelClass aReprModelClass)
     parse the throughout property of a class if available.
public static  StringproveBehaviouralSubtypingInv(UMLModelClass subtype)
     Asks the user to choose a supertype and then starts the prover with a corresponding "BehaviouralSubtypingInv" proof obligation.
public static  StringproveBehaviouralSubtypingOp(UMLModelClass subtype)
     Starts the prover with a "BehaviouralSubtypingOp" proof obligation.
public static  StringproveBehaviouralSubtypingOpPair(ModelMethod subMethod)
     Starts the prover with a "BehaviouralSubtypingOpPair" proof obligation.
public static  StringproveDLFormula(ModelClass modelClass, File file)
    
public static  StringproveEnsuresPost(ModelMethod modelMethod, Modality modality)
     Starts the prover with an "EnsuresPost" proof obligation.
public static  StringprovePreservesGuard(ModelMethod modelMethod)
     Starts the prover with an "IsGuard" proof obligation.
public static  StringprovePreservesInv(ModelMethod modelMethod)
     Asks the user to choose a set of invariants and then starts the prover with a corresponding "PreservesInv" proof obligation.
public static  StringprovePreservesOwnInv(ModelMethod modelMethod)
     Starts the prover with a "PreservesOwnInv" proof obligation.
public static  StringprovePreservesThroughout(ModelMethod modelMethod)
    
public static  StringproveRespectsModifies(ModelMethod modelMethod)
     Starts the prover with a "RespectsModifies" proof obligation.
public static  StringproveStrongOperationContract(ModelMethod modelMethod)
     Starts the prover with a "StrongOperationContract" proof obligation.
public static  StringsimplifyInvariant(ModelClass modelClass)
     Used for OCL Simplification.
public static  StringtransformXMIFile(ReprModel aReprModel)
    



Method Detail
buildExcVar
protected static ProgramVariable buildExcVar(JavaInfo javaInfo)(Code)



buildParamVars
protected static ListOfParsableVariable buildParamVars(ModelMethod modelMethod, JavaInfo javaInfo)(Code)



buildResultVar
protected static ProgramVariable buildResultVar(ModelMethod modelMethod, JavaInfo javaInfo)(Code)



buildSelfVarAsLogicVar
protected static LogicVariable buildSelfVarAsLogicVar(ModelClass modelClass, JavaInfo javaInfo)(Code)



computeSpecification
public static String computeSpecification(ModelMethod modelMethod)(Code)
Computes and displays the specification of the method. Tries to compute the strongest specification (pre and postcondition) of aMethRepr.
Parameters:
  modelMethod - the method whose specification to compute. any error messages to pass to the user.
See Also:   de.uka.ilkd.key.cspec.ComputeSpecification
See Also:   de.uka.ilkd.key.proof.init.ComputeSpecificationPONew



parseMethodSpec
public static String parseMethodSpec(ModelMethod modelMethod)(Code)
Starts the prover with an "EnsuresPost" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about; the proof obligation will be about its *first* OperationContract error message to the user



parseOneInvariant
public static String parseOneInvariant(UMLModelClass aReprModelClass)(Code)
parse the invariant of a class if available.
Parameters:
  aReprModelClass - the class whose invariant should be parsed error message to the user



parseOneThroughout
public static String parseOneThroughout(UMLModelClass aReprModelClass)(Code)
parse the throughout property of a class if available.
Parameters:
  aReprModelClass - the class whose throughout should be parsed error message to the user



proveBehaviouralSubtypingInv
public static String proveBehaviouralSubtypingInv(UMLModelClass subtype)(Code)
Asks the user to choose a supertype and then starts the prover with a corresponding "BehaviouralSubtypingInv" proof obligation.
Parameters:
  subtype - the UMLModelClass with subtype for which behavioural subtyping with respect to the invariant has to be shown error message to the user



proveBehaviouralSubtypingOp
public static String proveBehaviouralSubtypingOp(UMLModelClass subtype)(Code)
Starts the prover with a "BehaviouralSubtypingOp" proof obligation.
Parameters:
  subtype - the UMLModelClass with the subtype for whose methodbehavioural subtyping has to be proven error message to the user



proveBehaviouralSubtypingOpPair
public static String proveBehaviouralSubtypingOpPair(ModelMethod subMethod)(Code)
Starts the prover with a "BehaviouralSubtypingOpPair" proof obligation.
Parameters:
  subMethod - the ModelMethod representing the overwriting method to reason about; the proof obligation will be about its *first* operation contract error message to the user



proveDLFormula
public static String proveDLFormula(ModelClass modelClass, File file)(Code)



proveEnsuresPost
public static String proveEnsuresPost(ModelMethod modelMethod, Modality modality)(Code)
Starts the prover with an "EnsuresPost" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about; the proof obligation will be about its *first* OperationContract
Parameters:
  modality - the desired modality error message to the user



provePreservesGuard
public static String provePreservesGuard(ModelMethod modelMethod)(Code)
Starts the prover with an "IsGuard" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about error message to the user



provePreservesInv
public static String provePreservesInv(ModelMethod modelMethod)(Code)
Asks the user to choose a set of invariants and then starts the prover with a corresponding "PreservesInv" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about error message to the user



provePreservesOwnInv
public static String provePreservesOwnInv(ModelMethod modelMethod)(Code)
Starts the prover with a "PreservesOwnInv" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about error message to the user



provePreservesThroughout
public static String provePreservesThroughout(ModelMethod modelMethod)(Code)



proveRespectsModifies
public static String proveRespectsModifies(ModelMethod modelMethod)(Code)
Starts the prover with a "RespectsModifies" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about; the proof obligation will be about its *first* OperationContract error message to the user



proveStrongOperationContract
public static String proveStrongOperationContract(ModelMethod modelMethod)(Code)
Starts the prover with a "StrongOperationContract" proof obligation.
Parameters:
  modelMethod - the ModelMethod to reason about; the proof obligation will be about its *first* operation contract error message to the user



simplifyInvariant
public static String simplifyInvariant(ModelClass modelClass)(Code)
Used for OCL Simplification.
Parameters:
  modelClass - the ModelClass whose invariant needs to be simplified.



transformXMIFile
public static String transformXMIFile(ReprModel aReprModel)(Code)



Methods inherited from java.lang.Object
protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public void notify() throws IllegalMonitorStateException(Code)(Java Doc)
final public void notifyAll() throws IllegalMonitorStateException(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final public void wait() throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms) throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)
final public void wait(long ms, int ns) throws IllegalMonitorStateException, InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.