本文整理汇总了Java中org.netbeans.lib.cvsclient.command.update.UpdateCommand类的典型用法代码示例。如果您正苦于以下问题:Java UpdateCommand类的具体用法?Java UpdateCommand怎么用?Java UpdateCommand使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UpdateCommand类属于org.netbeans.lib.cvsclient.command.update包,在下文中一共展示了UpdateCommand类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createCommand
import org.netbeans.lib.cvsclient.command.update.UpdateCommand; //导入依赖的package包/类
protected Command createCommand(CvsRootProvider root, CvsExecutionEnvironment cvsExecutionEnvironment) {
final UpdateCommand updateCommand = new UpdateCommand();
addFilesToCommand(root, updateCommand);
//updateCommand.setPruneDirectories(myUpdateSettings.getPruneEmptyDirectories());
updateCommand.setCleanCopy(myUpdateSettings.getCleanCopy());
updateCommand.setResetStickyOnes(myUpdateSettings.getResetAllSticky());
updateCommand.setBuildDirectories(myUpdateSettings.getCreateDirectories());
updateCommand.setKeywordSubst(myUpdateSettings.getKeywordSubstitution());
myUpdateSettings.getRevisionOrDate().setForCommand(updateCommand);
if (myUpdateSettings.getBranch1ToMergeWith() != null) {
updateCommand.setMergeRevision1(myUpdateSettings.getBranch1ToMergeWith());
}
if (myUpdateSettings.getBranch2ToMergeWith() != null) {
updateCommand.setMergeRevision2(myUpdateSettings.getBranch2ToMergeWith());
}
return updateCommand;
}
示例2: getModules
import org.netbeans.lib.cvsclient.command.update.UpdateCommand; //导入依赖的package包/类
public List<String> getModules(CvsCredentials cvsCredentials, String localPath)
throws CommandException, CommandAbortedException, AuthenticationException {
try {
Client client = CvsConnection.openClient(cvsCredentials.getCvsRoot(), cvsCredentials.getPassword(), localPath);
globalOptions = new GlobalOptions();
globalOptions.setCVSRoot(cvsCredentials.getCvsRoot());
globalOptions.setDoNoChanges(true);
UpdateCommand updateCommand = new UpdateCommand();
updateCommand.setBuildDirectories(true);
AdminHandler handler = new StandardAdminHandler();
client.setAdminHandler(handler);
EventManager eventManager = client.getEventManager();
ModuleCollectingListener moduleCollectingListener = new ModuleCollectingListener();
eventManager.addCVSListener(moduleCollectingListener);
client.executeCommand(updateCommand, globalOptions);
return moduleCollectingListener.getModules();
} finally {
// closeConnection(connection);
}
}
示例3: createCommand
import org.netbeans.lib.cvsclient.command.update.UpdateCommand; //导入依赖的package包/类
@Override
protected Command createCommand(CvsRootProvider root, CvsExecutionEnvironment cvsExecutionEnvironment) {
final UpdateCommand command = new UpdateCommand();
command.setBuildDirectories(true);
command.setRecursive(true);
root.getRevisionOrDate().setForCommand(command);
return command;
}
示例4: asUpdateCommand
import org.netbeans.lib.cvsclient.command.update.UpdateCommand; //导入依赖的package包/类
private UpdateCommand asUpdateCommand() {
return ((UpdateCommand)myCommand);
}
示例5: isUpdateCommand
import org.netbeans.lib.cvsclient.command.update.UpdateCommand; //导入依赖的package包/类
private boolean isUpdateCommand() {
return myCommand instanceof UpdateCommand;
}