Source Code Cross Referenced for FindableModelSet.java in  » Search-Engine » semweb4j » org » ontoware » rdf2go » model » 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 » Search Engine » semweb4j » org.ontoware.rdf2go.model 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * LICENSE INFORMATION
03:         * Copyright 2005-2007 by FZI (http://www.fzi.de).
04:         * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05:         * <OWNER> = Max Völkel
06:         * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07:         * <YEAR> = 2007
08:         * 
09:         * Project information at http://semweb4j.org/rdf2go
10:         */
11:        package org.ontoware.rdf2go.model;
12:
13:        import org.ontoware.aifbcommons.collection.ClosableIterator;
14:        import org.ontoware.rdf2go.exception.ModelRuntimeException;
15:        import org.ontoware.rdf2go.model.node.NodeOrVariable;
16:        import org.ontoware.rdf2go.model.node.ResourceOrVariable;
17:        import org.ontoware.rdf2go.model.node.UriOrVariable;
18:
19:        /**
20:         * 
21:         * @author voelkel
22:         */
23:        public interface FindableModelSet {
24:
25:            /**
26:             * Search across all existing models
27:             * 
28:             * @param contextURI
29:             * @param subject
30:             * @param predicate
31:             * @param object
32:             * @return
33:             * @throws ModelRuntimeException
34:             */
35:            ClosableIterator<Statement> findStatements(
36:                    UriOrVariable contextURI, ResourceOrVariable subject,
37:                    UriOrVariable predicate, NodeOrVariable object)
38:                    throws ModelRuntimeException;
39:
40:            /**
41:             * Search across all existing models and retunrs all statements matching the
42:             * quad pattern
43:             * 
44:             * @param pattern
45:             * @return
46:             * @throws ModelRuntimeException
47:             */
48:            ClosableIterator<Statement> findStatements(QuadPattern pattern)
49:                    throws ModelRuntimeException;
50:
51:            /**
52:             * @param contextURI
53:             * @param subject
54:             * @param predicate
55:             * @param object
56:             * @return true, if a Model named 'contextURI' contains the statement
57:             *         (s,p,o)
58:             * @throws ModelRuntimeException
59:             */
60:            boolean containsStatements(UriOrVariable contextURI,
61:                    ResourceOrVariable subject, UriOrVariable predicate,
62:                    NodeOrVariable object) throws ModelRuntimeException;
63:
64:            /**
65:             * @param s
66:             *            a Statement
67:             * @return true if the modelset contains a model with context s.getContext()
68:             *         which contains the statement s. If the context is null, the
69:             *         default graph is checked.
70:             * @throws ModelRuntimeException
71:             */
72:            boolean contains(Statement s) throws ModelRuntimeException;
73:
74:            /**
75:             * @param pattern
76:             * @return the number of statements matchingthe pattern. This is for all
77:             *         graphs matching the context of the pattern (this is none, one or
78:             *         all graphs). In matching graphs the number of matching statements
79:             *         is accumulated and returned.
80:             * @throws ModelRuntimeException
81:             */
82:            long countStatements(QuadPattern pattern)
83:                    throws ModelRuntimeException;
84:
85:            /**
86:             * @param context
87:             * @param subject
88:             * @param predicate
89:             * @param object
90:             * @return a QuadPattern
91:             */
92:            QuadPattern createQuadPattern(UriOrVariable context,
93:                    ResourceOrVariable subject, UriOrVariable predicate,
94:                    NodeOrVariable object);
95:
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.