例: IsFTIndexed property

次のエージェントは、現在のデータベースに全文索引が作成されているかどうかを示すメッセージを出力します。

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();
      String title = db.getTitle();
      if (db.isFTIndexed())
        System.out.println("Database ¥"" + title +
        "¥" is full-text indexed");
      else
        System.out.println("Database ¥"" + title +
        "¥" is not full-text indexed");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}