JAVA/CORBA クラス


例:DateSep プロパティ、isDateDMY プロパティ、isDateMDY プロパティ、isDateYMD プロパティ、Today プロパティ、Tomorrow プロパティ、および Yesterday プロパティ
このエージェントは、日付部分の国別設定値を表示します。設定値は日付形式の表示順 (日月年、月日年、または年月日)、区切り記号、および昨日、今日、明日を表すキーワードです。

import lotus.domino.*;
public class JavaAgent extends AgentBase {
 public void NotesMain() {
   try {
     Session session = getSession();
     AgentContext agentContext = session.getAgentContext();
     // (Your code goes here)
     International inat = session.getInternational();
     if (inat.isDateDMY())
       System.out.println
       ("Format of date is \"DMY\"");
     if (inat.isDateMDY())
       System.out.println
       ("Format of date is \"MDY\"");
     if (inat.isDateYMD())
       System.out.println
       ("Format of date is \"YMD\"");
     System.out.println
     ("Date separator is \"" + inat.getDateSep() + "\"");
     System.out.println
     ("Text of date keywords:" +
     inat.getYesterday() + ", " +
     inat.getToday() + ", " +
     inat.getTomorrow());
   } catch(Exception e) {
     e.printStackTrace();
   }
 }
}

関連項目