Update of /cvsroot/javaowl/JavaOWL/src/org/javaowl/models/prevalence
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18976/src/org/javaowl/models/prevalence
Modified Files:
PrevalentGraph.java StorageGraph.java TripleUtil.java
Log Message:
Changes in remote interface.
Index: PrevalentGraph.java
===================================================================
RCS file: /cvsroot/javaowl/JavaOWL/src/org/javaowl/models/prevalence/PrevalentGraph.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PrevalentGraph.java 28 Jul 2004 16:44:17 -0000 1.4
--- PrevalentGraph.java 11 Aug 2004 02:06:04 -0000 1.5
***************
*** 155,159 ****
for (int i = 0; i < triples.length; i++) {
add(triples[i]);
! }
}
--- 155,159 ----
for (int i = 0; i < triples.length; i++) {
add(triples[i]);
! }
}
***************
*** 179,183 ****
for (int i = 0; i < triples.length; i++) {
delete(triples[i]);
! }
}
--- 179,183 ----
for (int i = 0; i < triples.length; i++) {
delete(triples[i]);
! }
}
Index: StorageGraph.java
===================================================================
RCS file: /cvsroot/javaowl/JavaOWL/src/org/javaowl/models/prevalence/StorageGraph.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** StorageGraph.java 28 Jul 2004 06:54:07 -0000 1.3
--- StorageGraph.java 11 Aug 2004 02:06:04 -0000 1.4
***************
*** 122,126 ****
for(int i = 0; i < size; i++) {
add(TripleUtil.readTriple(in));
! }
}
}
--- 122,126 ----
for(int i = 0; i < size; i++) {
add(TripleUtil.readTriple(in));
! }
}
}
Index: TripleUtil.java
===================================================================
RCS file: /cvsroot/javaowl/JavaOWL/src/org/javaowl/models/prevalence/TripleUtil.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TripleUtil.java 28 Jul 2004 06:54:07 -0000 1.1
--- TripleUtil.java 11 Aug 2004 02:06:04 -0000 1.2
***************
*** 99,103 ****
private static char RDB_CODE_DELIM_CHAR = ':';
! private static String nodeToString(Node node) throws RDFRDBException {
String res;
if (node.isURI()) {
--- 99,103 ----
private static char RDB_CODE_DELIM_CHAR = ':';
! public static String nodeToString(Node node) throws RDFRDBException {
String res;
if (node.isURI()) {
***************
*** 134,138 ****
}
! private static Node stringToNode(String rdbString) throws RDFRDBException {
Node res = null;
int len = rdbString.length();
--- 134,138 ----
}
! public static Node stringToNode(String rdbString) throws RDFRDBException {
Node res = null;
int len = rdbString.length();
|