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


java.lang.Object
   de.uka.ilkd.key.logic.TermBuilder

All known Subclasses:   de.uka.ilkd.key.rule.metaconstruct.InReachableStatePOBuilder,  de.uka.ilkd.key.parser.jml.JMLTranslator,  de.uka.ilkd.key.jml.JMLSpec,  de.uka.ilkd.key.java.TypeConverter,
TermBuilder
public class TermBuilder (Code)

Use this class if you intend to build complex terms by hand. It is more convenient than the @link{TermFactory} class.

Most convenient is its use when being subclassed. Therefore move the term constructing methods of your application to a separate class and let the new class extend the TermBuilder.

Attention: some methods of this class try to simplify some terms. So if you want to be sure that the term looks exactly as you built it, you will have to use the TermFactory.



Field Summary
final public static  TermBuilderDF
    
final protected static  TermFactorytf
    

Constructor Summary
public  TermBuilder()
    

Method Summary
public  TermFALSE(Services services)
    
public  TermNULL(Services services)
    
public  TermTRUE(Services services)
    
public  Termall(QuantifiableVariable lv, Term t2)
    
public  Termall(QuantifiableVariable[] lv, Term t2)
    
public  Termand(Term t1, Term t2)
    
public  Termand(Term[] subTerms)
    
public  Termand(ListOfTerm subTerms)
    
public  Termarray(Term ref, Term idx)
    
public  Termbox(JavaBlock jb, Term t)
    
public  Termdia(JavaBlock jb, Term t)
    
public  Termdot(Term o, ProgramVariable a)
    
public  Termequals(Term t1, Term t2)
    
public  Termequiv(Term t1, Term t2)
    
public  Termex(QuantifiableVariable lv, Term t2)
    
public  Termex(QuantifiableVariable[] lv, Term t2)
    
public  Termff()
    
public  Termfunc(TermSymbol op)
    
public  Termfunc(TermSymbol op, Term s)
    
public  Termfunc(TermSymbol op, Term s1, Term s2)
    
public  Termfunc(TermSymbol op, Term[] s)
    
public  Termgeq(Term t1, Term t2, Services services)
    
public  Termgt(Term t1, Term t2, Services services)
    
public  Termife(Term cond, Term _then, Term _else)
    
public  Termimp(Term t1, Term t2)
    
public  Termleq(Term t1, Term t2, Services services)
    
public  Termlt(Term t1, Term t2, Services services)
    
public  Termnot(Term t)
    
public  Termone(Services services)
    
public  Termor(Term t1, Term t2)
    
public  Termor(Term[] subTerms)
    
public  Termor(ListOfTerm subTerms)
    
public  TermFactorytf()
    
public  Termtt()
    
public  Termvar(LogicVariable v)
    
public  Termvar(ProgramVariable v)
    
public  Termvar(ParsableVariable v)
    
public  TermzTerm(Services services, String numberString)
    
public  Termzero(Services services)
    

Field Detail
DF
final public static TermBuilder DF(Code)



tf
final protected static TermFactory tf(Code)




Constructor Detail
TermBuilder
public TermBuilder()(Code)




Method Detail
FALSE
public Term FALSE(Services services)(Code)



NULL
public Term NULL(Services services)(Code)



TRUE
public Term TRUE(Services services)(Code)



all
public Term all(QuantifiableVariable lv, Term t2)(Code)



all
public Term all(QuantifiableVariable[] lv, Term t2)(Code)



and
public Term and(Term t1, Term t2)(Code)



and
public Term and(Term[] subTerms)(Code)



and
public Term and(ListOfTerm subTerms)(Code)



array
public Term array(Term ref, Term idx)(Code)



box
public Term box(JavaBlock jb, Term t)(Code)



dia
public Term dia(JavaBlock jb, Term t)(Code)



dot
public Term dot(Term o, ProgramVariable a)(Code)



equals
public Term equals(Term t1, Term t2)(Code)



equiv
public Term equiv(Term t1, Term t2)(Code)



ex
public Term ex(QuantifiableVariable lv, Term t2)(Code)



ex
public Term ex(QuantifiableVariable[] lv, Term t2)(Code)



ff
public Term ff()(Code)



func
public Term func(TermSymbol op)(Code)



func
public Term func(TermSymbol op, Term s)(Code)



func
public Term func(TermSymbol op, Term s1, Term s2)(Code)



func
public Term func(TermSymbol op, Term[] s)(Code)



geq
public Term geq(Term t1, Term t2, Services services)(Code)



gt
public Term gt(Term t1, Term t2, Services services)(Code)



ife
public Term ife(Term cond, Term _then, Term _else)(Code)



imp
public Term imp(Term t1, Term t2)(Code)



leq
public Term leq(Term t1, Term t2, Services services)(Code)



lt
public Term lt(Term t1, Term t2, Services services)(Code)



not
public Term not(Term t)(Code)



one
public Term one(Services services)(Code)



or
public Term or(Term t1, Term t2)(Code)



or
public Term or(Term[] subTerms)(Code)



or
public Term or(ListOfTerm subTerms)(Code)



tf
public TermFactory tf()(Code)



tt
public Term tt()(Code)



var
public Term var(LogicVariable v)(Code)



var
public Term var(ProgramVariable v)(Code)



var
public Term var(ParsableVariable v)(Code)



zTerm
public Term zTerm(Services services, String numberString)(Code)
builds a Term from a number, given by a String
Parameters:
  services - Services which contains the number-functions
Parameters:
  numberString - String representing an integer Term in Z-Notation representing the given number



zero
public Term zero(Services services)(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.