例: putAllInFolder method (ViewEntryCollection - Java™)

「Transportation」カテゴリのすべての文書を [Transportation] フォルダに入れます。

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();
      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      View view = db.getView("By Category");
      view.setAutoUpdate(false);
      ViewEntryCollection vec =
      view.getAllEntriesByKey("Transportation", false);
      System.out.println("Number of entries found = " + 
      vec.getCount());
      System.out.println("Putting them in 
      ¥"Transportation¥"");
      vec.putAllInFolder("Transportation");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}