org.mandarax.kernel

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 » Rule Engine » Mandarax » org.mandarax.kernel 
org.mandarax.kernel
Java Source File NameTypeComment
AbstractClause.javaClass Abstract super class providing some common functionality for classes implementing org.mandarax.kernel.Clause.
AbstractPredicate.javaClass Abstract super class for predicates.
AbstractPropertiesSupport.javaClass
CachedClauseSet.javaInterface Clause set with a caching mechanism.
Clause.javaInterface Clauses are clauses in the prolog sense, i.e.
ClauseSet.javaInterface Set of clauses.
ClauseSetChangeEvent.javaClass Event fired to notify listeners that a clause set has changed.
ClauseSetChangeListener.javaInterface Listener handling clause set change events.
ClauseSetException.javaClass An exception indicating a problem when requesting a clause iterator, or when iterating clauses.
ComplexTerm.javaInterface Complex terms are terms built from functions and subterms.
ConstantTerm.javaInterface Constant terms are like individuals in formal logic.
Constructor.javaInterface General interface for logical entities used to build complex logical entities from simple entities.
Derivation.javaClass Represents a logical derivation.
DerivationEventListener.javaInterface A derivation event listener a couple of "hooks" to customize the derivation process.
DerivationNode.javaInterface Derivation nodes represent the application of a single clause (usually a rule) in a derivation.
ExtendedKnowledgeBase.javaInterface Extended knowledge base class that offers additional functionality to maintain the knowledge base.
Fact.javaInterface Interface representing facts.
FeatureDescriptions.javaClass Abstract class providing a description of features of an object.
Function.javaInterface Functions are typed functions operating on a domain of objects.
Goal.javaClass Goal of a derivation step.
InferenceEngine.javaInterface Basic interface of an inference engine.
InferenceEngineFeatureDescriptions.javaClass Feature descriptor for inference engines.
InferenceException.javaClass An exception indicating a problem in the inference engine.
KnowledgeBase.javaInterface Knowledge Base objects are containers managing knowledge represented by clauses sets (this includes facts and rules).
KnowledgeBaseChangeEvent.javaClass Event fired to notify listeners that a knowledge base has changed.
KnowledgeBaseChangeListener.javaInterface Event fired to notify listeners that a knowledge base has changed.
KnowledgeBaseFeatureDescriptions.javaClass Feature descriptor for knowledge bases.
KnowledgeOwner.javaInterface Interface for object owning knowledge (represented as clause sets).
LObject.javaClass Abstract superclass for various mandarax classes.
LogicFactory.javaClass Abstract factory object for creating logical entities such as rules, facts and terms. The implementing classes should never be instanciated directly.
LoopCheckingAlgorithm.javaInterface Interface for abstract loop checkers.
Predicate.javaInterface Predicates, defined by name and structure. In version 3.0 named slots have been added.
Prerequisite.javaInterface Interface for prerequisites used in the bodies of rules.
PropertiesSupport.javaInterface Interface that can be extended/implemented by all interfaces/classes that want to equip their respective instances with an additional parameter facility.
Query.javaInterface Interface representing queries.
Replacement.javaClass Replacement of terms.
Result.javaClass Represents the result of a query.
ResultSet.javaInterface Represents the result set of a query.
Rule.javaInterface Rules are prerequisite / conclusion associations.
SelectionPolicy.javaInterface Interface for strategies defining the order of literals that is used by the inference engine when it attempts to unify the literals with a clause.
SemanticsSupport.javaInterface Interface for objects that may support semantic evaluation. E.g., a term 'plus(2,3)' with the plus function from the mandarax integer lib and the two constant terms wrapping the Integer instances 2 and 3 can be evaluated (performed) using the semantics of the respective java operator or method, the evaluation will yield 5 (or more precisely, a constant term wrapping the Integer instance 5).
In a similar manner, a fact such as 4<plus(2,3) can be evaluated, the result is a boolean (true in this case).
Session.javaInterface Object representing a session.
SimpleConstructor.javaClass Abstract super class for simple predicates.
SimplePredicate.javaClass Simple implementation of predicate.
Term.javaInterface A term is either a variable, a name or a compound term containing a function.
TermContainer.javaInterface Interface for objects managing terms such as facts and complex terms.
Unification.javaClass Represents the result of a unification comprising a collection containing the substitutions and the two unified terms with the replacements applied.
UnificationAlgorithm.javaInterface Interface of a unification algorithm used to promote modularity of inference engines.
VariableTerm.javaInterface Represents (typed) variables, like 'x','a person' etc.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.