Examples: createViewNavFromChildren method
This agent gets all the entries that are immediate children of the first entry under "category 2."
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");
Document doc = view.getDocumentByKey("category 2");
ViewNavigator nav = view.createViewNavFromChildren(doc);
int n = 0;
String t = null;
ViewEntry tmpentry;
ViewEntry entry = nav.getFirst();
while (entry != null) {
n++;
if (entry.isCategory()) t = "category";
else if (entry.isDocument()) t = "document";
else if (entry.isTotal()) t = "total";
System.out.println("Entry #" + n + " is a " + t);
tmpentry = nav.getNext();
entry.recycle();
entry = tmpentry;
}
} catch(Exception e) {
e.printStackTrace();
}
}
}