Examples: getChild method
This example gets the child of the first entry in an outline and sets its alias to "First quarter".
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();
Outline outline = db.getOutline("Product Discussion");
OutlineEntry entryA = outline.getFirst();
OutlineEntry entryB = outline.getChild(entryA);
entryB.setAlias("First quarter");
outline.save();
} catch(Exception e) {
e.printStackTrace();
}
}
}