⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractlicensetag.java

📁 一个“对象--XML 映射”(Object-Xml Mapping) 的类库。 它的目的是帮助开发者方便、快速的从XML 文件构建出Java 对象
💻 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 + -