blob: f319297ecf5b590984eb6dfc33c7ac6698a55db4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Frank Becker and others.
* 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:
* Frank Becker - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.bugzilla.ui.search;
import java.io.Serializable;
public class ChartExpression implements Serializable {
private static final long serialVersionUID = 6211236042329085161L;
private int fieldName;
private int operation;
private String value;
public ChartExpression(int fieldName, int operation, String value) {
super();
this.fieldName = fieldName;
this.operation = operation;
this.value = value;
}
public int getFieldName() {
return fieldName;
}
public void setFieldName(int fieldName) {
this.fieldName = fieldName;
}
public int getOperation() {
return operation;
}
public void setOperation(int operation) {
this.operation = operation;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}