答えは少し遅れているかもしれませんが、ここではtagコマンドを使用したコード例です。 使い方はかなり簡単です。
1)クライアントを作成します。
PServerConnection con = new PServerConnection(getCVSRoot());
con.setEncodedPassword(StandardScrambler.getInstance().scramble(password));
GlobalOptions globalOptions = new GlobalOptions();
globalOptions.setCVSRoot(getCVSRoot().toString());
client = new Client(connection, new StandardAdminHandler());
// this line is important, because otherwise you'll get a
// NullpointerException!
client.setLocalPath(localPath);
2)タグコマンド
TagCommand tagCmd = new TagCommand();
tagCmd.setTag(tag);
tagCmd.setOverrideExistingTag(true);
3)を実行
client.getConnection().open();
boolean success = client.executeCommand(cmd, globalOptions);
client.getConnection().close();
を作成Iから最新バージョンを使用する[1]。
よろしくリッチー
[1] http://netbeans.org/projects/versioncontrol/downloads/
誰もこれに見ることができます。 – David