/*
* Copyright (C) 2001, 2002 Robert MacGrogan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Archive: SourceJammer$
* $FileName: ProcessInfo.java$
* $FileID: 4128$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 4/23/03 5:11 PM$
* $Comment: Replaced GPL header with LGPL header.$
*
* $KeyWordsOff: $
*/
package org.sourcejammer.client.gui.process;
/**
* Title: SourceJammer 1.0.1
* Description:
* Copyright: Copyright (c) 2001
* Company:
* @author Robert MacGrogan
* @version 1.0
*/
public class ProcessInfo {
private Object infoObject = null;
private int maximum = 100;
private int minimum = 0;
private int increment = 1;
private ProcessContainer container = null;
public ProcessInfo() {
}
public void setInfoObject(Object o){
infoObject = o;
}
public Object getInfoObject(){
return infoObject;
}
public void setMaximum(int i){
maximum = i;
}
public int getMaximum(){
return maximum;
}
public void setMinimum(int i){
minimum = i;
}
public int getMinimum(){
return minimum;
}
public void setIncrement(int i){
increment = i;
}
public int getIncrement(){
return increment;
}
public void setContainer(ProcessContainer o){
container = o;
}
public ProcessContainer getContainer(){
return container;
}
}
|