例: getFirstDocument method

次のエージェントは、現在のデータベースの [By Category] ビューの最初の文書を取得します。

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");
      System.out.println
      ("***By Category view - first document***");
      Document doc = view.getFirstDocument();
      System.out.println
      ("¥t" + doc.getItemValueString("Subject"));
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}