JAVA/CORBA CLASSES
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.setAccentSensitiveSort(!vc.isAccentSensitiveSort()); System.out.println("IsAccentSensitiveSort = " + vc.isAccentSensitiveSort()); } else System.out.println("Column is not sorted"); } catch(Exception e) { e.printStackTrace(); } } }
See Also