abstractlicensetag.java

来自「一个“对象--XML 映射”(Object-Xml Mapping) 的类库。 」· Java 代码 · 共 100 行

JAVA
100
字号
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 + =
减小字号Ctrl + -
显示快捷键?