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 String
getAddress()
String
getName()
String
getPhone()
void
setAddress(String address)
void
setName(String name)
void
setPhone(String phone)
String
toString()
-
-
-
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
-
-