01: /**
02: * GENERATED CODE: DO NOT MODIFY IT UNDER ANY CIRCUMSTANCES!!!
03: */package com.completex.objective.persistency.examples.ex003a.pos;
04:
05: import java.util.Date;
06: import java.io.InputStream;
07: import java.math.BigDecimal;
08: import java.math.BigInteger;
09: import java.sql.Clob;
10: import java.sql.Blob;
11:
12: public interface ICustomerContactRel {
13:
14: //
15: // customerId:
16: //
17: Long getCustomerId();
18:
19: void setCustomerId(Long customerId);
20:
21: boolean izNullCustomerId();
22:
23: void setNullCustomerId();
24:
25: //
26: // contactId:
27: //
28: Long getContactId();
29:
30: void setContactId(Long contactId);
31:
32: boolean izNullContactId();
33:
34: void setNullContactId();
35:
36: //
37: // contactType:
38: //
39: String getContactType();
40:
41: void setContactType(String contactType);
42:
43: boolean izNullContactType();
44:
45: void setNullContactType();
46:
47: }
|