JAVA/CORBA CLASSES


Examples: Luminance property
This agent displays the luminance RGB value of the background color of a view.

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("Main View");
     ColorObject color = session.createColorObject();
     color.setNotesColor(view.getBackgroundColor());
     System.out.println(
     "Luminance value of Main View background = "
     + color.getLuminance());

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

See Also