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

com.hfg.svg.SvgTSpan Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.svg;

import com.hfg.util.StringUtil;
import com.hfg.xml.XMLTag;

//------------------------------------------------------------------------------
/**
 * Object representation of an SVG (Scalable Vector Graphics) 'tspan' tag.
 * 
* @author J. Alex Taylor, hairyfatguy.com *
*/ //------------------------------------------------------------------------------ // com.hfg XML/HTML Coding Library // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com // [email protected] //------------------------------------------------------------------------------ public class SvgTSpan extends AbstractSvgNode implements SvgNode { //########################################################################## // CONSTRUCTORS //########################################################################## //--------------------------------------------------------------------------- public SvgTSpan() { super(SVG.tspan); } //--------------------------------------------------------------------------- public SvgTSpan(CharSequence inTitle) { this(); setContent(inTitle); } //--------------------------------------------------------------------------- public SvgTSpan(XMLTag inXMLTag) { this(); initFromXMLTag(inXMLTag); } //########################################################################## // PUBLIC METHODS //########################################################################## //--------------------------------------------------------------------------- public SvgTSpan setId(String inValue) { setAttribute(SvgAttr.id, inValue); return this; } //--------------------------------------------------------------------------- public SvgTSpan setX(int inValue) { setAttribute(SvgAttr.x, inValue); return this; } //--------------------------------------------------------------------------- public SvgTSpan setX(float inValue) { setAttribute(SvgAttr.x, inValue); return this; } //--------------------------------------------------------------------------- public Float getX() { String xAttr = getAttributeValue(SvgAttr.x); return (StringUtil.isSet(xAttr) ? Float.parseFloat(xAttr) : null); } //--------------------------------------------------------------------------- public SvgTSpan setY(int inValue) { setAttribute(SvgAttr.y, inValue); return this; } //--------------------------------------------------------------------------- public SvgTSpan setY(float inValue) { setAttribute(SvgAttr.y, inValue); return this; } //--------------------------------------------------------------------------- public Float getY() { String yAttr = getAttributeValue(SvgAttr.y); return (StringUtil.isSet(yAttr) ? Float.parseFloat(yAttr) : null); } //--------------------------------------------------------------------------- public SvgTSpan setLineHeight(float inValue) { setAttribute(SvgAttr.lineHeight, inValue); return this; } //--------------------------------------------------------------------------- public Float getLineHeight() { String value = getAttributeValue(SvgAttr.lineHeight); return (StringUtil.isSet(value) ? Float.parseFloat(value) : null); } //-------------------------------------------------------------------------- @Override public SvgTSpan addStyle(String inValue) { return (SvgTSpan) super.addStyle(inValue); } //--------------------------------------------------------------------------- @Override public SvgTSpan setStyle(String inValue) { return (SvgTSpan) super.setStyle(inValue); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy