/******************************************************************************* * 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.ontologies.openanzo; /** * Interface for AskResult ontology class<br> * Use the org.openanzo.ontologies.openanzo.AnzoFactory to create instances of this interface. * <p>(URI: http://openanzo.org/ontologies/2008/07/Anzo#AskResult)</p> * <br> * RDF Schema Standard Properties <br> * comment : A result for a AskQuery <br> * <br> * <br> */ @SuppressWarnings("all") public interface AskResult extends org.openanzo.ontologies.openanzo.Result, 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/Anzo#AskResult"); /** * The Anzo Property for _boolean * <p>(URI: http://openanzo.org/ontologies/2008/07/Anzo#boolean)</p> * <br> */ public static org.openanzo.rdf.URI _booleanProperty = org.openanzo.rdf.jastor.ThingFactory.valueFactory.createURI("http://openanzo.org/ontologies/2008/07/Anzo#boolean"); /** * Gets the '_boolean' property value from the given graph * @return {@link java.lang.Boolean} * @see #_booleanProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.lang.Boolean get_boolean() throws org.openanzo.rdf.jastor.JastorException; /** * Gets the '_boolean' property value * @param includeEntireDataset Get the properties from the entire dataset, and not just the namedgraph * @return {@link java.lang.Boolean} * @see #_booleanProperty * @throws org.openanzo.rdf.jastor.JastorException */ public java.lang.Boolean get_boolean(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; /** * Sets the '_boolean' property value * @param _boolean {@link java.lang.Boolean}, the value to set * @see #_booleanProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void set_boolean(java.lang.Boolean _boolean) throws org.openanzo.rdf.jastor.JastorException; /** * Clears all values for '_boolean'. * @param includeEntireDataset Delete the properties from the entire dataset, and not just the namedgraph * @see #_booleanProperty * @throws org.openanzo.rdf.jastor.JastorException */ public void clear_boolean(boolean includeEntireDataset) throws org.openanzo.rdf.jastor.JastorException; }