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

PersonClient.java

public class PersonClient {
    public static void main(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();}
    }
}