|
From: Elmer G. <ega...@us...> - 2004-08-19 21:28:04
|
Update of /cvsroot/javaowl/JavaOWL/src/org/javaowl/editor/remote In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26693/src/org/javaowl/editor/remote Modified Files: RemoteModelEditorWrapper.java Log Message: Removed all references to ResourceEditorBean Index: RemoteModelEditorWrapper.java =================================================================== RCS file: /cvsroot/javaowl/JavaOWL/src/org/javaowl/editor/remote/RemoteModelEditorWrapper.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RemoteModelEditorWrapper.java 19 Aug 2004 14:45:32 -0000 1.3 --- RemoteModelEditorWrapper.java 19 Aug 2004 21:27:54 -0000 1.4 *************** *** 21,26 **** import org.javaowl.editor.ModelEditor; - import org.javaowl.editor.ResourceEditorBean; import com.hp.hpl.jena.ontology.OntClass; import com.hp.hpl.jena.ontology.OntModel; --- 21,26 ---- import org.javaowl.editor.ModelEditor; + import com.hp.hpl.jena.ontology.Individual; import com.hp.hpl.jena.ontology.OntClass; import com.hp.hpl.jena.ontology.OntModel; *************** *** 91,118 **** } - - /* (non-Javadoc) - * @see org.javaowl.editor.ModelEditor#createResource(com.hp.hpl.jena.ontology.OntResource) - */ - public ResourceEditorBean createResourceEditor(OntResource classResource) { - // TODO Auto-generated method stub - return null; - } - - /* (non-Javadoc) - * @see org.javaowl.editor.ModelEditor#createResource(java.lang.String, com.hp.hpl.jena.ontology.OntResource) - */ - public ResourceEditorBean createResourceEditor(String uri, OntResource classResource) { - // TODO Auto-generated method stub - return null; - } - - /* (non-Javadoc) - * @see org.javaowl.editor.ModelEditor#getResource(com.hp.hpl.jena.rdf.model.Resource) - */ - public ResourceEditorBean getResourceEditor(Resource resource) { - // TODO Auto-generated method stub - return null; - } private OntClass[] createOntClassesFromUri(String[] uris) { --- 91,94 ---- *************** *** 162,164 **** --- 138,181 ---- } + public OntResource getValidLeafClass(Property currentProperty) { + // TODO Auto-generated method stub + return null; + } + + public Individual[] getValidObjects(OntResource ontClass) { + // TODO Auto-generated method stub + return null; + } + + public Statement addDataValue(Resource resource, Property currentProperty, Literal typedLiteral) { + // TODO Auto-generated method stub + return null; + } + + public Statement addObjectValue(Resource resource, Property currentProperty, Resource value) { + // TODO Auto-generated method stub + return null; + } + + public String getLabel(Resource resource) { + // TODO Auto-generated method stub + return null; + } + + public void setLabel(Resource currentResource, String label) { + // TODO Auto-generated method stub + + } + + public String getComment(Resource resource) { + // TODO Auto-generated method stub + return null; + } + + public void setComment(Resource currentResource, String comment) { + // TODO Auto-generated method stub + + } + + } |