⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prerequisiteimpl.java

📁 Mandarax是一个规则引擎的纯Java实现。它支持多类型的事实和基于反映的规则
💻 JAVA
字号:
package org.mandarax.reference;

/*
 * Copyright (C) 1999-2004 <A href="http://www-ist.massey.ac.nz/JBDietrich" target="_top">Jens Dietrich</a>
 *
 * This library 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 2 of the License, or (at your option) any later version.
 *
 * This library 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 library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


import org.mandarax.kernel.ClauseSetChangeEvent;
import org.mandarax.kernel.Fact;
import org.mandarax.kernel.Predicate;
import org.mandarax.kernel.Prerequisite;
import org.mandarax.kernel.Replacement;
import org.mandarax.kernel.Term;

/**
 * Reference implementation of the Prerequisite interface.
 * @author <A href="http://www-ist.massey.ac.nz/JBDietrich" target="_top">Jens Dietrich</A>
 * @version 3.4 <7 March 05>
 * @since 2.0
 * Prova re-integration modifications
 * @author <A HREF="mailto:a.kozlenkov@city.ac.uk">Alex Kozlenkov</A>
 * @version 3.4 <7 March 05>
 */
public class PrerequisiteImpl extends FactImpl implements Prerequisite {
	private boolean negatedAF = false;
	private Object extra = null;

	/**
	 * Constructor.
	 */
	public PrerequisiteImpl() {
		super();
	}
	/**
	 * Constructor.
	 * @param aPredicate a predicate
	 * @param terms the terms
	 * @param negatedAF whether the prerequisite is negated
	 */
	PrerequisiteImpl(Predicate aPredicate,Term[] terms,boolean negatedAF) {
		super(aPredicate,terms);
		setNegatedAF(negatedAF);
	}
	/**
	 * Indicates whether the prerequisite is negated (negation as failure)
	 * @return true if the prerequisite is negated, false otherwise
	 */
	public boolean isNegatedAF() {
		return negatedAF;
	}

	/**
	 * Set the negated (as failure) flag.
	 * @param value true or false
	 */
	public void setNegatedAF(boolean value) {
		boolean fireEvent = negatedAF!=value;
		negatedAF = value;
		if(fireEvent) fireClauseSetChangeEvent(new ClauseSetChangeEvent (this,this,this,ClauseSetChangeEvent.OTHER));

	}

	/**
	 * Convert the object to a string.
	 * @return the string representation of the object
	 */
	public String toString() {
		return negatedAF?("not "+super.toString()):super.toString();
	}

/**
	 * Apply a set of replacements to a fact. Returns a new fact!
	 * @return the fact resulting from the application of the replacement
	 * @param r a collection of replacement
	 * Prova: processing of "extra"
	 */
	public Fact applyToFact(java.util.Collection r) {
		Term[] t       = getTerms ();
		Term   newTerm = null;

		// create a new fact
		PrerequisiteImpl p = new PrerequisiteImpl();
		p.setNegatedAF(isNegatedAF());
		p.setExtra( getExtra() );
		copyStructure (p);
		for(int i = 0; i < t.length; i++) {
			newTerm = t[i];
			for(java.util.Iterator it = r.iterator (); it.hasNext (); ) {
				newTerm = newTerm.apply ((Replacement) it.next ());
			}
			p.setTerm (newTerm, i);
		}
		return p;
	}
	/**
	 * Apply a single replacement to a fact. Returns a new fact!
	 * @return the fact (clause) resulting from the application of the replacement
	 * @param r a replacement
	 */
	public Fact applyToFact(Replacement r) {
		Term[] t = getTerms ();
		// create a new fact
		PrerequisiteImpl p = new PrerequisiteImpl();
		copyStructure (p);
		p.setNegatedAF(this.isNegatedAF());
		for(int i = 0; i < t.length; i++) {
			p.setTerm (t[i].apply (r), i);
		}
		return p;
	}
	/**
	 * Compares objects.
	 * @param obj the object to compare this object with
	 * @return true if the objects are equal, false otherwise
	 */
	public boolean equals(Object obj) {
		if (obj instanceof Prerequisite && super.equals(obj)) {
			return isNegatedAF()==((Prerequisite)obj).isNegatedAF();
		}
		return false;
	}

    /**
     * 
     * @return
     */
	public Object getExtra() {
		return extra;
	}

    /**
     *
     * @param _extra
     */
	public void setExtra( Object _extra ) {
		extra = _extra;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -