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


java.lang.Object
   de.uka.ilkd.key.proof.TacletIndex

TacletIndex
public class TacletIndex (Code)
manages all applicable Taclets (more precisely: Taclets with instantiations but without position information, the ???NoPosTacletApp???s) at one node. It is a persistent implementation. Taclets can be added because the Taclets allow to introduce new rules during runtime. It offers selective get methods for different kinds of rules.


Field Summary
public  HashMapFromObjectToListOfNoPosTacletApprwList
    

Constructor Summary
public  TacletIndex()
    
public  TacletIndex(SetOfTaclet tacletSet)
     creates a new TacletIndex with the given Taclets as initial contents.

Method Summary
public  voidadd(Taclet rule)
     adds a new Taclet to this index.
public  voidadd(NoPosTacletApp tacletApp)
     adds a new Taclet with instantiation information to this index.
public  voidaddTaclets(SetOfTaclet tacletList)
    
public  voidaddTaclets(SetOfNoPosTacletApp tacletAppList)
    
public  SetOfNoPosTacletAppallNoPosTacletApps()
    
public  Objectclone()
    
public  TacletIndexcopy()
    
public  ListOfNoPosTacletAppgetAntecedentTaclet(PosInOccurrence pos, RuleFilter filter, Services services, Constraint userConstraint)
     get all Taclets for the antecedent.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  pos - the PosOfOccurrence describing the formula for which to look for top level taclets
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc.
public  ListOfNoPosTacletAppgetNoFindTaclet(RuleFilter filter, Services services, Constraint userConstraint)
     get all Taclets having no find expression.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc.
public  ListOfNoPosTacletAppgetPartialInstantiatedApps()
    
public  ListOfNoPosTacletAppgetRewriteTaclet(PosInOccurrence pos, Constraint termConstraint, RuleFilter filter, Services services, Constraint userConstraint)
     get all Rewrite-Taclets.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  term - the Term the Taclet is connected to
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc.
public  ListOfNoPosTacletAppgetSuccedentTaclet(PosInOccurrence pos, RuleFilter filter, Services services, Constraint userConstraint)
     get all Taclets for the succedent.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  pos - the PosOfOccurrence describing the formula for which to look for top level taclets
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc.
public  NoPosTacletApplookup(Name name)
     returns a NoPosTacletApp whose Taclet has a name that equals the given name.
public  NoPosTacletApplookup(String name)
     returns a NoPosTacletApp whose Taclet has a name that equals the given name.
public  voidremove(NoPosTacletApp tacletApp)
     removes a Taclet with the given instantiation information from this index.
public  voidremoveTaclets(SetOfNoPosTacletApp tacletAppList)
    
public  voidsetTaclets(SetOfTaclet tacletList)
    
public  voidsetTaclets(SetOfNoPosTacletApp tacletAppList)
    
public  StringtoString()
    

Field Detail
rwList
public HashMapFromObjectToListOfNoPosTacletApp rwList(Code)
contains rewrite Taclets




Constructor Detail
TacletIndex
public TacletIndex()(Code)
constructs empty rule index



TacletIndex
public TacletIndex(SetOfTaclet tacletSet)(Code)
creates a new TacletIndex with the given Taclets as initial contents.




Method Detail
add
public void add(Taclet rule)(Code)
adds a new Taclet to this index. If rule instance is not known rule is not added
Parameters:
  rule - the Taclet to be added



add
public void add(NoPosTacletApp tacletApp)(Code)
adds a new Taclet with instantiation information to this index. If rule instance is not known rule is not added
Parameters:
  tacletApp - the Taclet and its instantiation info to be added



addTaclets
public void addTaclets(SetOfTaclet tacletList)(Code)
adds a set of Taclets to this index
Parameters:
  tacletList - the taclets to be added



addTaclets
public void addTaclets(SetOfNoPosTacletApp tacletAppList)(Code)
adds a set of NoPosTacletApp to this index
Parameters:
  tacletAppList - the NoPosTacletApps to be added



allNoPosTacletApps
public SetOfNoPosTacletApp allNoPosTacletApps()(Code)



clone
public Object clone()(Code)
clones the index



copy
public TacletIndex copy()(Code)
copies the index



getAntecedentTaclet
public ListOfNoPosTacletApp getAntecedentTaclet(PosInOccurrence pos, RuleFilter filter, Services services, Constraint userConstraint)(Code)
get all Taclets for the antecedent.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  pos - the PosOfOccurrence describing the formula for which to look for top level taclets
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc. ListOfNoPosTacletApp containing all applicable rulesand the corresponding instantiations to get the rule fit.



getNoFindTaclet
public ListOfNoPosTacletApp getNoFindTaclet(RuleFilter filter, Services services, Constraint userConstraint)(Code)
get all Taclets having no find expression.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc. ListOfNoPosTacletApp containing all applicablerules and an empty part for the instantiations because noinstantiations are necessary.



getPartialInstantiatedApps
public ListOfNoPosTacletApp getPartialInstantiatedApps()(Code)
returns a list with all partial instantiated no pos taclet apps list with all partial instantiated NoPosTacletApps



getRewriteTaclet
public ListOfNoPosTacletApp getRewriteTaclet(PosInOccurrence pos, Constraint termConstraint, RuleFilter filter, Services services, Constraint userConstraint)(Code)
get all Rewrite-Taclets.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  term - the Term the Taclet is connected to
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc. ListOfNoPosTacletApp containing all applicable rulesand the corresponding instantiations to get the rule fit.



getSuccedentTaclet
public ListOfNoPosTacletApp getSuccedentTaclet(PosInOccurrence pos, RuleFilter filter, Services services, Constraint userConstraint)(Code)
get all Taclets for the succedent.
Parameters:
  filter - Only return taclets the filter selects
Parameters:
  pos - the PosOfOccurrence describing the formula for which to look for top level taclets
Parameters:
  services - the Services object encapsulating informationabout the java datastructures like (static)types etc. ListOfNoPosTacletApp containing all applicable rulesand the corresponding instantiations to get the rule fit.



lookup
public NoPosTacletApp lookup(Name name)(Code)
returns a NoPosTacletApp whose Taclet has a name that equals the given name. If more Taclets have the same name an arbitrary Taclet with that name is returned.
Parameters:
  name - the name to lookup the found NoPosTacletApp or null if no matching Taclet is there



lookup
public NoPosTacletApp lookup(String name)(Code)
returns a NoPosTacletApp whose Taclet has a name that equals the given name. If more Taclets have the same name an arbitrary Taclet with that name is returned.
Parameters:
  name - the name to lookup the found NoPosTacletApp or null if no matching Taclet is there



remove
public void remove(NoPosTacletApp tacletApp)(Code)
removes a Taclet with the given instantiation information from this index.
Parameters:
  tacletApp - the Taclet and its instantiation info to be removed



removeTaclets
public void removeTaclets(SetOfNoPosTacletApp tacletAppList)(Code)
removes the given NoPosTacletApps from this index
Parameters:
  tacletAppList - the NoPosTacletApps to be removed



setTaclets
public void setTaclets(SetOfTaclet tacletList)(Code)
sets the Taclets in this index and removes the old ones
Parameters:
  tacletList - the new taclets for this index



setTaclets
public void setTaclets(SetOfNoPosTacletApp tacletAppList)(Code)
sets the Taclets with instantiation info in this index and removes the old ones
Parameters:
  tacletAppList - the new NoPosTacletApps for this index



toString
public String toString()(Code)
toString



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.