/*
* 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: GetFileVersionProcess.java$
* $FileID: 4145$
*
* Last change:
* $AuthorName: Rob MacGrogan$
* $Date: 7/1/03 11:36 AM$
* $Comment: Removed debug messages.$
*/
package org.sourcejammer.client.gui.process;
import org.sourcejammer.client.gui.process.info.GetFileVersionProcessInfo;
import org.sourcejammer.client.plugin.EventTimingType;
import org.sourcejammer.project.view.NodeInfo;
import org.sourcejammer.util.RepeatingResponse;
import org.sourcejammer.client.SourceJammerClient;
import org.sourcejammer.client.gui.CommandCentral;
import org.sourcejammer.client.gui.MessageBoxUtil;
import java.awt.Cursor;
/**
* Title: $FileName: GetFileVersionProcess.java$
* @version $VerNum: 6$
* @author $AuthorName: Rob MacGrogan$<br><br>
*
* $Description: $
* $KeyWordsOff: $<br><br>
*/
public class GetFileVersionProcess extends AbstractProcess {
public GetFileVersionProcess() {
}
public void process(Object info) {
CommandCentral oCommand = CommandCentral.getInstance();
try {
if (info instanceof GetFileVersionProcessInfo){
RepeatingResponse repeating = new RepeatingResponse();
repeating.setDisablePrompt(false);
GetFileVersionProcessInfo oInfo = (GetFileVersionProcessInfo)info;
repeating.setParentComponent(oInfo.getDialog());
oCommand.getRootAppFrame().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
NodeInfo nd = oCommand.getSelectedFileNodeInfo(oInfo.getFileName());
oCommand.getFileVersion(nd,
oInfo.getTargetDirectory(),
oInfo.getVersionNumber(),
oInfo.getVersionID(),
oInfo.getEolType(),
oInfo.isMakeReadOnly(),
repeating,
oInfo.getRequest());
//oCommand.rebuildFileView();
SourceJammerClient.getInstance().getFileListeners()
.notifyFileVersionGet(oInfo.getRequest(), null, EventTimingType.AFTER_EVENT, nd);
}
}
catch (Exception ex){
ex.printStackTrace();
MessageBoxUtil.displayErrorMessage(ex.getMessage());
}
finally {
CommandCentral.getInstance().getRootAppFrame().setCursor(Cursor.getDefaultCursor());
}
}
}
|