Domino Code Fragment
| Code Name* Platform property | Date* 10/28/2025 | Source (or email address if you prefer)* [email protected] IP address:.172.68.12.127 | |
| Description* This program prints the name of the platform. | Type* Java | Categories* (Misc) | |
| Implementation: | Required Client: | Server: |
| Limitations: | Comments: | |
class platform extends NotesThread
{
public static void main(String argv[])
{
platform t = new platform();
t.start();
}
public void runNotes()
{
try
{
Session s = Session.newInstance();
String p = s.getPlatform();
System.out.println("Platform = " + p);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}