[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[subversive-dev] Framework + CheckoutOperation
|
- From: "Marcos Del Puerto" <mpuertog@xxxxxxxxx>
- Date: Thu, 3 Apr 2008 13:09:05 +0200
- Delivered-to: subversive-dev@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=6ux5uBCB7hljE7LOxqEt7v3pTea4ctdH66HfBV08ydk=; b=ilSjSWyJZwkELlDrqwbkXADts9R5TSz7nZ68rOiKIgT1qiP9VM9Js51Nk53Cz/iB2ikC3+uTIM9YerW9OUfYvwEABaWKPKsuF5ONGe8P0o68tENuKvjslBmDulI6eQ5q6dvLZ5s3o9cNFY1v2Yzg/c2QHrmU7y+hVgCCKakPSgA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=i9LDdkOorgLOH12Dy+tnkgHu5Sx/JTGdjkJE6QNRSNkEDbZ+9zXzKAcQV2xwqEzbz6hPakWPiSu7SVoFvxH2aKVlNo/Dd2RgAf/berA/IrkZh6SayEYTKjSa9y0k4E1chiJFQp8yAfz2VUKhbXnbO0z5YOdNSUPlRLHf798Ji4g=
Hi,
We use Subversive and we want to automate a couple of very common
tasks. We want to Check out and Check in directly from an action in a
view we have created in a plugin.
I have read "Subversive Architecture Overview" and the source code of
"org.polarion.team.svn.ui".
I'm trying to use CheckoutOperation and CommitOperation to do
something like this:
Code:
public class AutoChekoutAction extends AbstractRepositoryModifyWorkspaceAction {
public void runImpl(IAction action) {
IActionOperation op = new CheckoutOperation(???, false, null, true);
if (op != null) {
this.runScheduled(op);
}
}
}
What is the Hashmap parameter "checkoutMap"? Could anybody give me a
couple of tips to implement it? Isn't there more advanced information
than the architecture overview document?
Best Regards
PS: Sorry that I wrote this question first in the old Subversive Forum
(my fault)