次のエージェントは、大文字小文字を区別して列がソートされるかどうかを切り替えます。
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");
ViewColumn vc = view.getColumn(1);
if (vc.isSorted()) {
vc.setCaseSensitiveSort(!vc.isCaseSensitiveSort());
System.out.println("IsCaseSensitiveSort = " +
vc.isCaseSensitiveSort());
}
else
System.out.println("Column is not sorted");
} catch(Exception e) {
e.printStackTrace();
}
}
}