org.xowl.infra.lang.rules.Rule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xowl-lang Show documentation
Show all versions of xowl-lang Show documentation
Java implementation of the xOWL language concepts
/*******************************************************************************
* Copyright (c) 2016 Association Cénotélie (cenotelie.fr)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this program.
* If not, see .
******************************************************************************/
package org.xowl.infra.lang.rules;
import java.util.*;
/**
* Represents the base interface for Rule
* Original OWL class is http://xowl.org/infra/lang/rules#Rule
*
* @author xOWL code generator
*/
public interface Rule {
/**
* Adds an element to the property Antecedents
* Original OWL property is http://xowl.org/infra/lang/rules#antecedents
*
* @param elem The element to add
* @return Whether the operation resulted in a new element (false if the element was already there)
*/
boolean addAntecedents(Assertion elem);
/**
* Removes an element from the property Antecedents
* Original OWL property is http://xowl.org/infra/lang/rules#antecedents
*
* @param elem The element to remove
* @return Whether the operation resulted in the element being removed
*/
boolean removeAntecedents(Assertion elem);
/**
* Gets all the elements for the property Antecedents
* Original OWL property is http://xowl.org/infra/lang/rules#antecedents
*
* @return The elements for the property Antecedents
*/
Collection getAllAntecedents();
/**
* Adds an element to the property Consequents
* Original OWL property is http://xowl.org/infra/lang/rules#consequents
*
* @param elem The element to add
* @return Whether the operation resulted in a new element (false if the element was already there)
*/
boolean addConsequents(Assertion elem);
/**
* Removes an element from the property Consequents
* Original OWL property is http://xowl.org/infra/lang/rules#consequents
*
* @param elem The element to remove
* @return Whether the operation resulted in the element being removed
*/
boolean removeConsequents(Assertion elem);
/**
* Gets all the elements for the property Consequents
* Original OWL property is http://xowl.org/infra/lang/rules#consequents
*
* @return The elements for the property Consequents
*/
Collection getAllConsequents();
/**
* Sets the value for the property Guard
* Original OWL property is http://xowl.org/infra/lang/rules#guard
*
* @param elem The value to set
*/
void setGuard(org.xowl.infra.lang.owl2.LiteralExpression elem);
/**
* Gets the value for the property Guard
* Original OWL property is http://xowl.org/infra/lang/rules#guard
*
* @return The value for the property Guard
*/
org.xowl.infra.lang.owl2.LiteralExpression getGuard();
/**
* Sets the value for the property HasIRI
* Original OWL property is http://xowl.org/infra/lang/rules#hasIRI
*
* @param elem The value to set
*/
void setHasIRI(org.xowl.infra.lang.owl2.IRI elem);
/**
* Gets the value for the property HasIRI
* Original OWL property is http://xowl.org/infra/lang/rules#hasIRI
*
* @return The value for the property HasIRI
*/
org.xowl.infra.lang.owl2.IRI getHasIRI();
}