Examples: getView method

This agent gets the view named "(Default View)" in the current database and prints the number of columns in the 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("($All)");
      System.out.println("($All) has " + 
      view.getColumns().size() + " columns");
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}