FileDocCategorySizeDatePackage
PersonClient.javaAPI DocExample349Mon Dec 06 13:42:30 GMT 1999None

PersonClient

public class PersonClient extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

        try {
            Person person = new Person_Stub();
            int age = person.getAge();
            String name = person.getName();
            System.out.println(name+" is "+age+" years old");
        } catch(Throwable t) {t.printStackTrace();}