org.jooq.util.jaxb.Target Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.02.14 at 05:40:38 PM CET
//
package org.jooq.util.jaxb;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jooq.util.jaxb.tools.TrimAdapter;
/**
* Java class for Target complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Target">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="packageName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="directory" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Target", propOrder = {
})
@SuppressWarnings({
"all"
})
public class Target implements Serializable
{
private final static long serialVersionUID = 320L;
@XmlElement(defaultValue = "org.jooq.generated")
@XmlJavaTypeAdapter(TrimAdapter.class)
protected String packageName = "org.jooq.generated";
@XmlElement(required = true, defaultValue = "target/generated-sources/jooq")
@XmlJavaTypeAdapter(TrimAdapter.class)
protected String directory = "target/generated-sources/jooq";
/**
* Gets the value of the packageName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPackageName() {
return packageName;
}
/**
* Sets the value of the packageName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPackageName(String value) {
this.packageName = value;
}
/**
* Gets the value of the directory property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDirectory() {
return directory;
}
/**
* Sets the value of the directory property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDirectory(String value) {
this.directory = value;
}
public Target withPackageName(String value) {
setPackageName(value);
return this;
}
public Target withDirectory(String value) {
setDirectory(value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy