]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/service/ClusterBuilder2.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / service / ClusterBuilder2.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.db.service;\r
13 \r
14 import org.simantics.db.Resource;\r
15 import org.simantics.db.WriteOnlyGraph;\r
16 import org.simantics.db.exception.DatabaseException;\r
17 \r
18 \r
19 \r
20 /**\r
21  * @author Antti Villberg\r
22  */\r
23 public interface ClusterBuilder2 {\r
24         \r
25     void newCluster() throws DatabaseException;\r
26     void selectCluster(long cluster) throws DatabaseException;\r
27     void newCluster(int set) throws DatabaseException;\r
28     void createClusterSet(int resource) throws DatabaseException;\r
29         int newResource() throws DatabaseException;\r
30         int newResource(int set) throws DatabaseException;\r
31         int resource(Resource res) throws DatabaseException;\r
32 \r
33     void addStatement(WriteOnlyGraph graph, int subject, int predicate, int object) throws DatabaseException;\r
34     void beginValue(int subject);\r
35     void appendValue(int byteValue) throws DatabaseException ;\r
36     void endValue() throws DatabaseException ;\r
37         \r
38     Resource resource(int subject);\r
39     int handle(Resource r);\r
40         \r
41 }\r