JAVA/CORBA クラス


例:IsResortToView プロパティ
次のエージェントは、別のビューへの変更が可能なユーザーソート列かどうかを切り替え、列のユーザーソート属性を表示します。

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");
ViewColumn vc = view.getColumn(1);
if (vc.isResortToView())
vc.setResortToView(false);
else {
// Make sure other IsResort's are off
vc.setResortAscending(false);
vc.setResortDescending(false);
vc.setResortToView(true);
vc.setResortToViewName("By Category");
}
System.out.println("IsResortAscending = " + vc.isResortAscending());
System.out.println("IsResortDescending = " + vc.isResortDescending());
System.out.println("IsResortToView = " + vc.isResortToView());
System.out.println("ResortToViewName = " + vc.getResortToViewName());

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

関連項目