In our department directory example, an object of type Entry only has one form, namely an instance of class Entry. If we were designing the data for a more comprehensive directory such as a city phone directory, we would need more than one form of entry. At a minimum, we would need entry formats suitable for business listings, government listings, and residential listings. For such a phone directory, we might define an entry as follows.
A CityEntry is either:
The BusinessEntry and GovernmentEntry forms include city and state information because businesses and government agencies that serve clients in cities outside their local calling area often elect to have their phone numbers included in the directories of other cities (in addition to the cities where they are located). In addition, government listings include a string specifying the government entity to which they belong. For example, a listing for the Federal Bureau of Investigation would specify the "U.S. Government" as the gov field.
In Java, we can define the CityEntry type by introducing a ``dummy'' CityEntry class that we extend by ``concrete'' classes1.1 for each different form of Entry data. This technique, which is widely used in object-oriented programming, is called the union pattern. In the union pattern, an abstract class serves as the root of a hierarchy of subclasses called variants, which are the component types of the union. In this example, there are three variant classes: BusinessEntry, GovernmentEntry, ResidentialEntry. The following Java code defines the city-entry type:
The Java code in the CityEntry example above involves several concepts that we have not discussed before.
The following expression creates a BusinessEntry for Rice University
new BusinessEntry("Rice University", "6100 Main Street", "713-348-8101", "Houston", "Texas")This syntax is wordy but straightforward. Don't forget to include the keyword new at the front on each constructor invocation!
Finger Exercise Enter the preceding class definitions into the
Definitions pane of DrJava. Compile this program and evaluate the
following expressions in the Interactions pane:
BusinessEntry e1 = new BusinessEntry("Rice University", "6100 Main St.", "713-527-8101", "Houston", "TX"); ResidentialEntry e2 = new ResidentialEntry("Robert Cartwright", "3310 Underwood St.", "713-660-0967"); e1.getName() e2.getName()Did you get the results that you expected?