/*
* Copyright (C) 2001-2003 Robert MacGrogan
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* $Archive: SourceJammer$
* $FileName: GetLabeledVersionProcessInfo.java$
* $FileID: 4149$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 6/30/03 11:11 PM$
* $Comment: Fix frozen dialog bug. Pass VersionListDialog in to
* RepeatingResponse.$
*/
package org.sourcejammer.client.gui.process.info;
import java.awt.Component;
import java.io.File;
/**
* Title: $FileName: GetLabeledVersionProcessInfo.java$
* @author $AuthorName: Rob MacGrogan$
* @version $VerNum: 3$<br><br>
*
* $Description: $
* $KeyWordsOff: $<br><br>
*/
public class GetLabeledVersionProcessInfo {
private String msLabelName = null;
private File mflToDirectory = null;
private boolean mbBuildSubDirs = false;
private int miEOLType = -1;
private long labelID = -1;
private int versionNumber = -1;
private boolean mbMakeReadOnly = false;
private Component parentComponent = null;
public GetLabeledVersionProcessInfo() {
}
public void setLabelID(long l){
labelID = l;
}
public long getLabelID(){
return labelID;
}
public void setVersionNumber(int i){
versionNumber = i;
}
public int getVersionNumber(){
return versionNumber;
}
public void setLabelName(String s){
msLabelName = s;
}
public String getLabelName(){
return msLabelName;
}
public void setTargetDirectory(File f){
mflToDirectory = f;
}
public File getTargetDirectory(){
return mflToDirectory;
}
public void setBuildSubDirs(boolean b){
mbBuildSubDirs = b;
}
public boolean isBuildSubDirs(){
return mbBuildSubDirs;
}
public void setEOLType(int i){
miEOLType = i;
}
public int getEOLType(){
return miEOLType;
}
public void setMakeReadOnly(boolean b){
mbMakeReadOnly = b;
}
public boolean isMakeReadOnly(){
return mbMakeReadOnly;
}
/**
* Returns the parentComponent.
* @return Component
*/
public Component getParentComponent() {
return parentComponent;
}
/**
* Sets the parentComponent.
* @param parentComponent The parentComponent to set
*/
public void setParentComponent(Component parentComponent) {
this.parentComponent = parentComponent;
}
}
|