Lotus Software logo
IBM Lotus Domino Designer 8.5
  Versions 8.5 and 8.5.1






Examples: Platform property

This application prints the name of the platform.

import lotus.domino.*;

class platform extends NotesThread
{
public static void main(String argv[])
{
platform t = new platform();
t.start();
}
public void runNotes()
{
try
{
Session s = NotesFactory.createSession();
String p = s.getPlatform();
System.out.println("Platform = " + p);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
Related topics
Platform property




Library | Support | Terms of use |

Last updated: Monday, October 5, 2009