X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fbind%2Fjava%2Forg%2Finkscape%2Fdom%2Fsvg%2FSVGComponentTransferFunctionElementImpl.java;fp=src%2Fbind%2Fjava%2Forg%2Finkscape%2Fdom%2Fsvg%2FSVGComponentTransferFunctionElementImpl.java;h=e257e76c8d41e2c3acb58a6b61134491268e6377;hb=e6c6134fd4f3c207b1ac49c8b693ce3e9118c49c;hp=0000000000000000000000000000000000000000;hpb=f9cf25f7e6818eb03fb3baeb0b656842938acba5;p=inkscape.git diff --git a/src/bind/java/org/inkscape/dom/svg/SVGComponentTransferFunctionElementImpl.java b/src/bind/java/org/inkscape/dom/svg/SVGComponentTransferFunctionElementImpl.java new file mode 100644 index 000000000..e257e76c8 --- /dev/null +++ b/src/bind/java/org/inkscape/dom/svg/SVGComponentTransferFunctionElementImpl.java @@ -0,0 +1,50 @@ +/** + * This is a simple mechanism to bind Inkscape to Java, and thence + * to all of the nice things that can be layered upon that. + * + * Authors: + * Bob Jamison + * + * Copyright (c) 2007-2008 Inkscape.org + * + * 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 3 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * Note that these SVG files are implementations of the Java + * interface package found here: + * http://www.w3.org/TR/SVG/java.html + */ + +package org.inkscape.dom.svg; + +import org.w3c.dom.svg.SVGAnimatedEnumeration; +import org.w3c.dom.svg.SVGAnimatedNumberList; +import org.w3c.dom.svg.SVGAnimatedNumber; + + +public class SVGComponentTransferFunctionElementImpl + extends + SVGElementImpl + implements org.w3c.dom.svg.SVGComponentTransferFunctionElement +{ + +public native SVGAnimatedEnumeration getType( ); +public native SVGAnimatedNumberList getTableValues( ); +public native SVGAnimatedNumber getSlope( ); +public native SVGAnimatedNumber getIntercept( ); +public native SVGAnimatedNumber getAmplitude( ); +public native SVGAnimatedNumber getExponent( ); +public native SVGAnimatedNumber getOffset( ); + +}