class Person private String firstName private String lastName public Person(String fn, String ln) public String getName() public String getName() Now that person class is trivial right. Two ivars, one constructor, and two getter methods. If we asked "how does person work?", the answer would be you can construct it and you can get a first name and last name. Its behaviors are minimal and not even interesting. However, it may be a key player for a given software program.