/******************************************************************************* * 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.jastor.collections; /** * Interface for ResourceItem ontology class<br> * Use the org.openanzo.rdf.jastor.collections.CollectionsFactory to create instances of this interface. * <p>(URI: http://openanzo.org/ontologies/2008/07/Collections#ResourceItem)</p> * <br> * <br> * <br> */ public interface ResourceItem extends org.openanzo.rdf.jastor.collections.Item, 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://openanzo.org/ontologies/2008/07/Collections#ResourceItem"); /** * The Anzo Property for itemObject * <p>(URI: http://openanzo.org/ontologies/2008/07/Collections#itemObject)</p> * <br> */ public static org.openanzo.rdf.URI itemObjectProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/Collections#itemObject"); /** * Gets the 'itemObject' property value * @return {@link org.openanzo.rdf.jastor.Thing} * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.jastor.Thing getItemObject() throws org.openanzo.rdf.jastor.JastorException; /** * Gets the 'itemObject' property value * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link org.openanzo.rdf.jastor.Thing} * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.jastor.Thing getItemObject(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Sets the 'itemObject' property value * @param itemObject {@link org.openanzo.rdf.jastor.Thing}, value to set * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void setItemObject(org.openanzo.rdf.jastor.Thing itemObject) throws org.openanzo.rdf.jastor.JastorException; /** * Sets the 'itemObject' property value to an anonymous node * @return {@link org.openanzo.rdf.jastor.Thing}, the created value * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.jastor.Thing setItemObject() throws org.openanzo.rdf.jastor.JastorException; /** * Sets the 'itemObject' property value to the given resource, and add's rdf:type properties. This * method is equivalent constructing a new instance of {@link org.openanzo.rdf.jastor.Thing} with the factory. * and calling setItemObject(org.openanzo.rdf.jastor.Thing itemObject) * 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 {@link org.openanzo.rdf.Resource} must not be be null. * @return {@link org.openanzo.rdf.jastor.Thing}, the newly created value * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public org.openanzo.rdf.jastor.Thing setItemObject(org.openanzo.rdf.Resource resource) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for 'itemObject'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #itemObjectProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clearItemObject(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; }