例: getColumn method

次のエージェントは、ビューの最初の列のタイトルを取得します。

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("All Documents");
      ViewColumn column = view.getColumn(1);
      String title = column.getTitle();
      if (title.length() == 0) title = "No title";
      System.out.println
      ("First column is ¥"" + title + "¥"");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}