/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.rdf.rdfs; /** * Interface for Resource ontology class<br> * Use the org.openanzo.rdf.rdfs.RDFSFactory to create instances of this interface. * <p>(URI: http://www.w3.org/2000/01/rdf-schema#Resource)</p> * <br> * RDF Schema Standard Properties <br> * label : Resource <br> * comment : The class resource, everything. <br> * <br> * <br> */ public interface _Resource extends org.openanzo.rdf.jastor.Thing { /** * The rdf:type for this ontology class */ public static final org.openanzo.rdf.URI TYPE = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#Resource"); /** * The Anzo Property for comment * <p>(URI: http://www.w3.org/2000/01/rdf-schema#comment)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : comment <br> * comment : A description of the subject resource. <br> * <br> */ public static org.openanzo.rdf.URI commentProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#comment"); /** * The Anzo Property for label * <p>(URI: http://www.w3.org/2000/01/rdf-schema#label)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : label <br> * comment : A human-readable name for the subject. <br> * <br> */ public static org.openanzo.rdf.URI labelProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#label"); /** * The Anzo Property for type * <p>(URI: http://www.w3.org/1999/02/22-rdf-syntax-ns#type)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : type <br> * comment : The subject is an instance of a class. <br> * <br> */ public static org.openanzo.rdf.URI typeProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/1999/02/22-rdf-syntax-ns#type"); /** * The Anzo Property for value * <p>(URI: http://www.w3.org/1999/02/22-rdf-syntax-ns#value)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : value <br> * comment : Idiomatic property used for structured values. <br> * <br> */ public static org.openanzo.rdf.URI valueProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/1999/02/22-rdf-syntax-ns#value"); /** * The Anzo Property for isDefinedBy * <p>(URI: http://www.w3.org/2000/01/rdf-schema#isDefinedBy)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : isDefinedBy <br> * comment : The defininition of the subject resource. <br> * <br> */ public static org.openanzo.rdf.URI isDefinedByProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#isDefinedBy"); /** * The Anzo Property for member * <p>(URI: http://www.w3.org/2000/01/rdf-schema#member)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : member <br> * comment : A member of the subject resource. <br> * <br> */ public static org.openanzo.rdf.URI memberProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#member"); /** * The Anzo Property for seeAlso * <p>(URI: http://www.w3.org/2000/01/rdf-schema#seeAlso)</p> * <br> * <br> * RDF Schema Standard Properties <br> * label : seeAlso <br> * comment : Further information about the subject resource. <br> * <br> */ public static org.openanzo.rdf.URI seeAlsoProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://www.w3.org/2000/01/rdf-schema#seeAlso"); /** * Iterates through the 'comment' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link java.lang.String} * @see #commentProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<java.lang.String> getComment() throws org.openanzo.rdf.jastor.JastorException; /** * Iterates through the 'comment' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link java.lang.String} * @see #commentProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<java.lang.String> getComment(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Add a 'comment' property value * @param comment {@link java.lang.String}, the value to add * @see #commentProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addComment(java.lang.String comment) throws org.openanzo.rdf.jastor.JastorException; /** * Remove a 'comment' property value. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param comment {@link java.lang.String}, the value to remove * @see #commentProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeComment(java.lang.String comment) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'comment'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #commentProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearComment(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Iterates through the 'label' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link java.lang.String} * @see #labelProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<java.lang.String> getLabel() throws org.openanzo.rdf.jastor.JastorException; /** * Iterates through the 'label' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link java.lang.String} * @see #labelProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<java.lang.String> getLabel(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Add a 'label' property value * @param label {@link java.lang.String}, the value to add * @see #labelProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addLabel(java.lang.String label) throws org.openanzo.rdf.jastor.JastorException; /** * Remove a 'label' property value. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param label {@link java.lang.String}, the value to remove * @see #labelProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeLabel(java.lang.String label) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'label'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #labelProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearLabel(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'type' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs.Class} * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs.Class> getType() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'type' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs.Class} * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs.Class> getType(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'type' property * @param type The {@link org.openanzo.rdf.rdfs.Class} to add * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addType(org.openanzo.rdf.rdfs.Class type) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'type' property * @return The anoymous {@link org.openanzo.rdf.rdfs.Class} created * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs.Class addType() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'type' property. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.rdfs.Class} with the factory * and calling addType(org.openanzo.rdf.rdfs.Class type) * The resource argument have rdf:type http://www.w3.org/2000/01/rdf-schema#Class. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.rdf.rdfs.Class, value added * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs.Class addType(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'type' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param type The {@link org.openanzo.rdf.rdfs.Class} to remove * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeType(org.openanzo.rdf.rdfs.Class type) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'type' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param type The {@link org.openanzo.rdf.Resource} to remove * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeType(org.openanzo.rdf.Resource type) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'type'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #typeProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearType(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'value' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getValue() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'value' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getValue(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'value' property * @param value The {@link org.openanzo.rdf.rdfs._Resource} to add * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addValue(org.openanzo.rdf.rdfs._Resource value) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'value' property * @return The anoymous {@link org.openanzo.rdf.rdfs._Resource} created * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addValue() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'value' property. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.rdfs._Resource} with the factory * and calling addValue(org.openanzo.rdf.rdfs._Resource value) * The resource argument have rdf:type http://www.w3.org/2000/01/rdf-schema#Resource. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.rdf.rdfs._Resource, value added * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addValue(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'value' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param value The {@link org.openanzo.rdf.rdfs._Resource} to remove * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeValue(org.openanzo.rdf.rdfs._Resource value) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'value' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param value The {@link org.openanzo.rdf.Resource} to remove * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeValue(org.openanzo.rdf.Resource value) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'value'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #valueProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearValue(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'isDefinedBy' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getIsDefinedBy() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'isDefinedBy' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getIsDefinedBy(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'isDefinedBy' property * @param isDefinedBy The {@link org.openanzo.rdf.rdfs._Resource} to add * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addIsDefinedBy(org.openanzo.rdf.rdfs._Resource isDefinedBy) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'isDefinedBy' property * @return The anoymous {@link org.openanzo.rdf.rdfs._Resource} created * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addIsDefinedBy() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'isDefinedBy' property. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.rdfs._Resource} with the factory * and calling addIsDefinedBy(org.openanzo.rdf.rdfs._Resource isDefinedBy) * The resource argument have rdf:type http://www.w3.org/2000/01/rdf-schema#Resource. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.rdf.rdfs._Resource, value added * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addIsDefinedBy(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'isDefinedBy' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param isDefinedBy The {@link org.openanzo.rdf.rdfs._Resource} to remove * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeIsDefinedBy(org.openanzo.rdf.rdfs._Resource isDefinedBy) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'isDefinedBy' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param isDefinedBy The {@link org.openanzo.rdf.Resource} to remove * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeIsDefinedBy(org.openanzo.rdf.Resource isDefinedBy) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'isDefinedBy'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #isDefinedByProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearIsDefinedBy(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'member' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getMember() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'member' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getMember(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'member' property * @param member The {@link org.openanzo.rdf.rdfs._Resource} to add * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addMember(org.openanzo.rdf.rdfs._Resource member) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'member' property * @return The anoymous {@link org.openanzo.rdf.rdfs._Resource} created * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addMember() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'member' property. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.rdfs._Resource} with the factory * and calling addMember(org.openanzo.rdf.rdfs._Resource member) * The resource argument have rdf:type http://www.w3.org/2000/01/rdf-schema#Resource. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.rdf.rdfs._Resource, value added * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addMember(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'member' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param member The {@link org.openanzo.rdf.rdfs._Resource} to remove * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeMember(org.openanzo.rdf.rdfs._Resource member) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'member' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param member The {@link org.openanzo.rdf.Resource} to remove * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeMember(org.openanzo.rdf.Resource member) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'member'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #memberProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearMember(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'seeAlso' property values. This Iteartor * may be used to remove all such values. * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getSeeAlso() throws org.openanzo.rdf.jastor.JastorException; /** * Get an Iterator the 'seeAlso' property values. This Iteartor * may be used to remove all such values. * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.util.Collection} of {@link org.openanzo.rdf.rdfs._Resource} * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.util.Collection<org.openanzo.rdf.rdfs._Resource> getSeeAlso(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'seeAlso' property * @param seeAlso The {@link org.openanzo.rdf.rdfs._Resource} to add * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void addSeeAlso(org.openanzo.rdf.rdfs._Resource seeAlso) throws org.openanzo.rdf.jastor.JastorException; /** * Adds an anonymous value for the 'seeAlso' property * @return The anoymous {@link org.openanzo.rdf.rdfs._Resource} created * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addSeeAlso() throws org.openanzo.rdf.jastor.JastorException; /** * Adds a value for the 'seeAlso' property. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.rdfs._Resource} with the factory * and calling addSeeAlso(org.openanzo.rdf.rdfs._Resource seeAlso) * The resource argument have rdf:type http://www.w3.org/2000/01/rdf-schema#Resource. That is, this method * should not be used as a shortcut for creating new objects in the model. * @param resource The {@link org.openanzo.rdf.Resource} to add * @return org.openanzo.rdf.rdfs._Resource, value added * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.rdfs._Resource addSeeAlso(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'seeAlso' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param seeAlso The {@link org.openanzo.rdf.rdfs._Resource} to remove * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeSeeAlso(org.openanzo.rdf.rdfs._Resource seeAlso) throws org.openanzo.rdf.jastor.JastorException; /** * Removes a value for the 'seeAlso' property. This method should not * be invoked while iterator through values. In that case, the remove() method of the Iterator * itself should be used. * @param seeAlso The {@link org.openanzo.rdf.Resource} to remove * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void removeSeeAlso(org.openanzo.rdf.Resource seeAlso) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'seeAlso'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #seeAlsoProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearSeeAlso(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; }