Examples: AllEntries property

This agent prints the number of document entries in a view.

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");
      ViewEntryCollection vec = view.getAllEntries();
      System.out.println("\"By Category\" view has " +
      vec.getCount() + " entries");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}