Class Manufacturer
- java.lang.Object
-
- ejava.examples.orm.core.annotated.Manufacturer
-
@Embeddable public class Manufacturer extends Object
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.
-
-
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()
-