blob: 229959f6ddf9219fdc8d11a40dae8675d1fa74a9 [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.ote.message.condition;
import org.eclipse.osee.ote.message.elements.StringElement;
/**
* @author Ken J. Aguilar
*/
public class StringComparisonCondition extends AbstractCondition implements IDiscreteElementCondition<String> {
private final StringElement element;
private final String value;
private final StringOperation operation;
private String lastValue = null;
public StringComparisonCondition(StringElement element, StringOperation operation, String value) {
this.element = element;
this.operation = operation;
this.value = value;
}
@Override
public String getLastCheckValue() {
return lastValue;
}
@Override
public boolean check() {
lastValue = element.getValue();
return operation.evaluate(lastValue, value);
}
public StringElement getElement() {
return element;
}
public String getValue() {
return value;
}
public StringOperation getOperation() {
return operation;
}
}