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

org.tinywind.springi18nconverter.jaxb.Source 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: 2016.06.30 at 02:49:33 AM KST 
//


package org.tinywind.springi18nconverter.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.StringAdapter;


/**
 * 

Java class for Source complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Source">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="converter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="toMessageProperties" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sourceDir" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sourceEncoding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="describeByNative" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="targetDir" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="targetEncoding" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="overwrite" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="excludes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Source", propOrder = { }) @SuppressWarnings({ "all" }) public class Source implements Serializable { private final static long serialVersionUID = 380L; @XmlElement(defaultValue = "org.tinywind.springi18nconverter.converter.JavascriptConverter") @XmlJavaTypeAdapter(StringAdapter.class) protected String converter = "org.tinywind.springi18nconverter.converter.JavascriptConverter"; @XmlElement(defaultValue = "false") protected Boolean toMessageProperties = false; @XmlElement(required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String sourceDir; @XmlElement(defaultValue = "UTF-8") @XmlJavaTypeAdapter(StringAdapter.class) protected String sourceEncoding = "UTF-8"; @XmlElement(defaultValue = "false") protected Boolean describeByNative = false; @XmlElement(defaultValue = "") @XmlJavaTypeAdapter(StringAdapter.class) protected String targetDir = ""; @XmlElement(defaultValue = "UTF-8") @XmlJavaTypeAdapter(StringAdapter.class) protected String targetEncoding = "UTF-8"; @XmlElement(defaultValue = "true") protected Boolean overwrite = true; @XmlElement(defaultValue = "") @XmlJavaTypeAdapter(StringAdapter.class) protected String excludes = ""; /** * Gets the value of the converter property. * * @return * possible object is * {@link String } * */ public String getConverter() { return converter; } /** * Sets the value of the converter property. * * @param value * allowed object is * {@link String } * */ public void setConverter(String value) { this.converter = value; } /** * Gets the value of the toMessageProperties property. * * @return * possible object is * {@link Boolean } * */ public Boolean isToMessageProperties() { return toMessageProperties; } /** * Sets the value of the toMessageProperties property. * * @param value * allowed object is * {@link Boolean } * */ public void setToMessageProperties(Boolean value) { this.toMessageProperties = value; } /** * Gets the value of the sourceDir property. * * @return * possible object is * {@link String } * */ public String getSourceDir() { return sourceDir; } /** * Sets the value of the sourceDir property. * * @param value * allowed object is * {@link String } * */ public void setSourceDir(String value) { this.sourceDir = value; } /** * Gets the value of the sourceEncoding property. * * @return * possible object is * {@link String } * */ public String getSourceEncoding() { return sourceEncoding; } /** * Sets the value of the sourceEncoding property. * * @param value * allowed object is * {@link String } * */ public void setSourceEncoding(String value) { this.sourceEncoding = value; } /** * Gets the value of the describeByNative property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDescribeByNative() { return describeByNative; } /** * Sets the value of the describeByNative property. * * @param value * allowed object is * {@link Boolean } * */ public void setDescribeByNative(Boolean value) { this.describeByNative = value; } /** * Gets the value of the targetDir property. * * @return * possible object is * {@link String } * */ public String getTargetDir() { return targetDir; } /** * Sets the value of the targetDir property. * * @param value * allowed object is * {@link String } * */ public void setTargetDir(String value) { this.targetDir = value; } /** * Gets the value of the targetEncoding property. * * @return * possible object is * {@link String } * */ public String getTargetEncoding() { return targetEncoding; } /** * Sets the value of the targetEncoding property. * * @param value * allowed object is * {@link String } * */ public void setTargetEncoding(String value) { this.targetEncoding = value; } /** * Gets the value of the overwrite property. * * @return * possible object is * {@link Boolean } * */ public Boolean isOverwrite() { return overwrite; } /** * Sets the value of the overwrite property. * * @param value * allowed object is * {@link Boolean } * */ public void setOverwrite(Boolean value) { this.overwrite = value; } /** * Gets the value of the excludes property. * * @return * possible object is * {@link String } * */ public String getExcludes() { return excludes; } /** * Sets the value of the excludes property. * * @param value * allowed object is * {@link String } * */ public void setExcludes(String value) { this.excludes = value; } public Source withConverter(String value) { setConverter(value); return this; } public Source withToMessageProperties(Boolean value) { setToMessageProperties(value); return this; } public Source withSourceDir(String value) { setSourceDir(value); return this; } public Source withSourceEncoding(String value) { setSourceEncoding(value); return this; } public Source withDescribeByNative(Boolean value) { setDescribeByNative(value); return this; } public Source withTargetDir(String value) { setTargetDir(value); return this; } public Source withTargetEncoding(String value) { setTargetEncoding(value); return this; } public Source withOverwrite(Boolean value) { setOverwrite(value); return this; } public Source withExcludes(String value) { setExcludes(value); return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy