JAVA/CORBA クラス


例:IsProhibitDesignRefresh プロパティ
次のエージェントは、ビューの設計を更新できるかどうかを切り替えます。

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 Documents");
if (view.isProhibitDesignRefresh()) {
view.setProhibitDesignRefresh(false);
}
else {
view.setProhibitDesignRefresh(true);
}
System.out.println("IsProhibitDesignRefresh = " +
view.isProhibitDesignRefresh());

} catch(Exception e) {
e.printStackTrace();
}
}
}

関連項目