Domino Code Fragment

Code Name*
Compiling and running a Java program
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.222.67.251
Description*
2. This is a stand-alone program that implements the Runnable interface:
Type*
Java
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
import lotus.notes.*;

public class platform2 implements Runnable
{
 public static void main(String argv[])
   {
       platform2 t = new platform2();
       NotesThread nt = new NotesThread((Runnable)t);
       nt.start();
   }

  public void run()
   {
   try
     {
       Session s = Session.newInstance();
       String p = s.getPlatform();
       System.out.println("Platform = " + p);
     }
   catch (Exception e)
     {
       e.printStackTrace();
     }
   }
}