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

org.plutext.jaxb.svg11.FeTurbulence Maven / Gradle / Ivy

There is a newer version: 11.4.0
Show newest version
/*
 *  Copyright 2010, Plutext Pty Ltd.
 *   
 *  This file is part of docx4j.

    docx4j is licensed under the Apache License, Version 2.0 (the "License"); 
    you may not use this file except in compliance with the License. 

    You may obtain a copy of the License at 

        http://www.apache.org/licenses/LICENSE-2.0 

    Unless required by applicable law or agreed to in writing, software 
    distributed under the License is distributed on an "AS IS" BASIS, 
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
    See the License for the specific language governing permissions and 
    limitations under the License.

 */


package org.plutext.jaxb.svg11;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.w3.org/2000/svg}SVG.feTurbulence.content">
 *       <attGroup ref="{http://www.w3.org/2000/svg}SVG.FilterPrimitive.attrib"/>
 *       <attGroup ref="{http://www.w3.org/2000/svg}SVG.FilterColor.attrib"/>
 *       <attGroup ref="{http://www.w3.org/2000/svg}SVG.Core.attrib"/>
 *       <attribute name="baseFrequency" type="{http://www.w3.org/2000/svg}NumberOptionalNumber.datatype" />
 *       <attribute name="numOctaves" type="{http://www.w3.org/2000/svg}Integer.datatype" />
 *       <attribute name="seed" type="{http://www.w3.org/2000/svg}Number.datatype" />
 *       <attribute name="stitchTiles" default="noStitch">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *             <enumeration value="stitch"/>
 *             <enumeration value="noStitch"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="type" default="turbulence">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *             <enumeration value="fractalNoise"/>
 *             <enumeration value="turbulence"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public class FeTurbulence extends SVGFeTurbulenceContent { @XmlAttribute protected String baseFrequency; @XmlAttribute protected String numOctaves; @XmlAttribute protected String seed; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String stitchTiles; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String type; @XmlAttribute protected String x; @XmlAttribute protected String y; @XmlAttribute protected String width; @XmlAttribute protected String height; @XmlAttribute @XmlSchemaType(name = "anySimpleType") protected String result; @XmlAttribute(name = "color-interpolation-filters") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String colorInterpolationFilters; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") protected String base; @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String space; @XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String lang; /** * Gets the value of the baseFrequency property. * * @return * possible object is * {@link String } * */ public String getBaseFrequency() { return baseFrequency; } /** * Sets the value of the baseFrequency property. * * @param value * allowed object is * {@link String } * */ public void setBaseFrequency(String value) { this.baseFrequency = value; } /** * Gets the value of the numOctaves property. * * @return * possible object is * {@link String } * */ public String getNumOctaves() { return numOctaves; } /** * Sets the value of the numOctaves property. * * @param value * allowed object is * {@link String } * */ public void setNumOctaves(String value) { this.numOctaves = value; } /** * Gets the value of the seed property. * * @return * possible object is * {@link String } * */ public String getSeed() { return seed; } /** * Sets the value of the seed property. * * @param value * allowed object is * {@link String } * */ public void setSeed(String value) { this.seed = value; } /** * Gets the value of the stitchTiles property. * * @return * possible object is * {@link String } * */ public String getStitchTiles() { if (stitchTiles == null) { return "noStitch"; } else { return stitchTiles; } } /** * Sets the value of the stitchTiles property. * * @param value * allowed object is * {@link String } * */ public void setStitchTiles(String value) { this.stitchTiles = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { if (type == null) { return "turbulence"; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the x property. * * @return * possible object is * {@link String } * */ public String getX() { return x; } /** * Sets the value of the x property. * * @param value * allowed object is * {@link String } * */ public void setX(String value) { this.x = value; } /** * Gets the value of the y property. * * @return * possible object is * {@link String } * */ public String getY() { return y; } /** * Sets the value of the y property. * * @param value * allowed object is * {@link String } * */ public void setY(String value) { this.y = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link String } * */ public String getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link String } * */ public void setWidth(String value) { this.width = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link String } * */ public String getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link String } * */ public void setHeight(String value) { this.height = value; } /** * Gets the value of the result property. * * @return * possible object is * {@link String } * */ public String getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link String } * */ public void setResult(String value) { this.result = value; } /** * Gets the value of the colorInterpolationFilters property. * * @return * possible object is * {@link String } * */ public String getColorInterpolationFilters() { return colorInterpolationFilters; } /** * Sets the value of the colorInterpolationFilters property. * * @param value * allowed object is * {@link String } * */ public void setColorInterpolationFilters(String value) { this.colorInterpolationFilters = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the space property. * * @return * possible object is * {@link String } * */ public String getSpace() { return space; } /** * Sets the value of the space property. * * @param value * allowed object is * {@link String } * */ public void setSpace(String value) { this.space = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy