blob: 9ddd1258a806adf838ec9a71f99c9050a3754cca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.skynet.core.artifact.operation;
import java.util.List;
import org.eclipse.osee.framework.skynet.core.artifact.Artifact;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactFactory;
import org.eclipse.osee.framework.skynet.core.artifact.ArtifactType;
import org.eclipse.osee.framework.skynet.core.artifact.Branch;
/**
* @author Ryan D. Brooks
*/
public abstract class ArtifactConditional extends Artifact {
public static final String ARTIFACT_NAME = "Artifact Conditional";
public ArtifactConditional(ArtifactFactory parentFactory, String guid, String humanReadableId, Branch branch, ArtifactType artifactType) {
super(parentFactory, guid, humanReadableId, branch, artifactType);
}
public abstract boolean evaluateConditional(List<Artifact> artifacts) throws IllegalArgumentException;
}