Package ejava.examples.orm.core.mapped
Class Manufacturer
- java.lang.Object
-
- ejava.examples.orm.core.mapped.Manufacturer
-
- All Implemented Interfaces:
Serializable
public class Manufacturer extends Object implements Serializable
This class provides an example of an object with no identity of its own and must be stored within a containing object. See the XRay class for an example of a containing object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Manufacturer()Manufacturer(String name, String address, String phone)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()StringgetName()StringgetPhone()voidsetAddress(String address)voidsetName(String name)voidsetPhone(String phone)StringtoString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
name
private String name
-
address
private String address
-
phone
private String phone
-
-