📄 abstractlicensetag.java
字号:
package net.sf.oxmled.mapping.sample.base;
import java.util.HashSet;
import java.util.Set;
import net.sf.oxmled.mapping.sample.Person;
/**
* AbstractLicenseTag generated by MyEclipse Persistence Tools
*/
public abstract class AbstractLicenseTag implements java.io.Serializable {
// Fields
private Long id;
private Person person;
private String license;
private Byte booked;
private Byte bagSeasoned;
private Set parkingses = new HashSet(0);
// Constructors
/** default constructor */
public AbstractLicenseTag() {
}
/** minimal constructor */
public AbstractLicenseTag(Person person, String license, Byte booked,
Byte bagSeasoned) {
this.person = person;
this.license = license;
this.booked = booked;
this.bagSeasoned = bagSeasoned;
}
/** full constructor */
public AbstractLicenseTag(Person person, String license, Byte booked,
Byte bagSeasoned, Set parkingses) {
this.person = person;
this.license = license;
this.booked = booked;
this.bagSeasoned = bagSeasoned;
this.parkingses = parkingses;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Person getPerson() {
return this.person;
}
public void setPerson(Person person) {
this.person = person;
}
public String getLicense() {
return this.license;
}
public void setLicense(String license) {
this.license = license;
}
public Byte getBooked() {
return this.booked;
}
public void setBooked(Byte booked) {
this.booked = booked;
}
public Byte getBagSeasoned() {
return this.bagSeasoned;
}
public void setBagSeasoned(Byte bagSeasoned) {
this.bagSeasoned = bagSeasoned;
}
public Set getParkingses() {
return this.parkingses;
}
public void setParkingses(Set parkingses) {
this.parkingses = parkingses;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -