Package au.edu.qut.yawl.elements

Source Code of au.edu.qut.yawl.elements.YInputCondition

/*
* This file is made available under the terms of the LGPL licence.
* This licence can be retreived from http://www.gnu.org/copyleft/lesser.html.
* The source remains the property of the YAWL Foundation.  The YAWL Foundation is a collaboration of
* individuals and organisations who are commited to improving workflow technology.
*
*/


package au.edu.qut.yawl.elements;

import au.edu.qut.yawl.util.YVerificationMessage;

import java.util.List;
import java.util.Vector;

/**
*
* @author Lachlan Aldred
* Date: 22/04/2003
* Time: 13:43:54
*
*/
public final class YInputCondition extends YCondition {

    /**
     * Constructor.
     * @param id of the NetElement.
     * @param label of the condition.
     */
    public YInputCondition(String id, String label, YNet container) {
        super(id, label, container);
    }

    public YInputCondition(String id, YNet container) {
        super(id, container);
    }


    /**
     * This is one of those few cases where the sub-class has tighter constraints than the
     * parent class on one of the supertype members (preset).  ie. an InputCondition must always
     * have an empty preset.
     * @return a List of error messages.
     */
    public List verify() {
        List messages = new Vector();
/*        if(_preset.size() > 0 || _postset.size() > 0){
            if(this._preset.size() != 0){
                messages.add(new YVerificationMessage(this, this
                        + " preset must be empty: "+ this._preset.values()));
            }
            messages.addAll(verifyPostset());
        }
        else*/{
            if (getPresetElements().size() != 0) {
                messages.add(new YVerificationMessage(this, this
                        + " preset must be empty: " + getPresetElements(), YVerificationMessage.ERROR_STATUS));
            }
            messages.addAll(verifyPostsetFlows());
        }
        return messages;
    }


    public Object clone() throws CloneNotSupportedException {
        YNet copyContainer = _net.getCloneContainer();
        if (copyContainer.getNetElements().containsKey(this.getID())) {
            return copyContainer.getNetElement(this.getID());
        }
        YInputCondition copy = (YInputCondition) super.clone();
        copy._net.setInputCondition(copy);
        return copy;
    }
}
TOP

Related Classes of au.edu.qut.yawl.elements.YInputCondition

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.