例: Parent property (OutlineEntry - Java™)

次の例は最初のエントリの親アウトラインを取得し、その名前を出力します。

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("Products");
            OutlineEntry entry = outline.getFirst();
            Outline outline2 = entry.getParent();
            System.out.println(outline2.getName());
        } catch(Exception e) {
          e.printStackTrace();
        }
    }
}