All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.jaxb.Target Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
//
// 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: 2015.10.08 at 01:50:30 PM CEST 
//


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 = 370L; @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