blob: da6f3bdd660c5248ddb418684c48f8d9e33dd30b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 The Regents of the University of California.
* This material was produced under U.S. Government contract W-7405-ENG-36
* for Los Alamos National Laboratory, which is operated by the University
* of California for the U.S. Department of Energy. The U.S. Government has
* rights to use, reproduce, and distribute this software. NEITHER THE
* GOVERNMENT NOR THE UNIVERSITY MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
* ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is modified
* to produce derivative works, such modified software should be clearly marked,
* so as not to confuse it with the version available from LANL.
*
* Additionally, 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
*
* LA-CC 04-115
*******************************************************************************/
package org.eclipse.ptp.debug.internal.core.pdi.model;
import org.eclipse.ptp.debug.core.pdi.IPDICondition;
/**
* @author clement
*
*/
public class Condition implements IPDICondition {
private int ignoreCount;
private String expression;
private String[] tids;
public Condition(int ignore, String exp, String[] ids) {
ignoreCount = ignore;
expression = (exp == null) ? new String() : exp;
tids = (ids == null) ? new String[0] : ids;
}
/* (non-Javadoc)
* @see org.eclipse.ptp.debug.core.pdi.IPDICondition#equals(org.eclipse.ptp.debug.core.pdi.IPDICondition)
*/
public boolean equals(IPDICondition obj) {
if (obj instanceof Condition) {
Condition cond = (Condition)obj;
if (cond.getIgnoreCount() != this.getIgnoreCount())
return false;
if (cond.getExpression().compareTo(this.getExpression()) != 0)
return false;
if (cond.getThreadIds().length != this.getThreadIds().length)
return false;
for (int i = 0; i < cond.getThreadIds().length; ++i) {
if (cond.getThreadIds()[i].compareTo(this.getThreadIds()[i]) != 0) {
return false;
}
}
return true;
}
return false;
}
/* (non-Javadoc)
* @see org.eclipse.ptp.debug.core.pdi.IPDICondition#getExpression()
*/
public String getExpression() {
return expression;
}
/* (non-Javadoc)
* @see org.eclipse.ptp.debug.core.pdi.IPDICondition#getIgnoreCount()
*/
public int getIgnoreCount() {
return ignoreCount;
}
/* (non-Javadoc)
* @see org.eclipse.ptp.debug.core.pdi.IPDICondition#getThreadIds()
*/
public String[] getThreadIds() {
return tids;
}
}