KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > dom > svg > SVGFEMorphologyElement


1
2 package org.w3c.dom.svg;
3
4 public interface SVGFEMorphologyElement extends
5                SVGElement,
6                SVGFilterPrimitiveStandardAttributes {
7   // Morphology Operators
8
public static final short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
9   public static final short SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
10   public static final short SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
11
12   public SVGAnimatedString getIn1( );
13   public SVGAnimatedEnumeration getOperator( );
14   public SVGAnimatedLength getRadiusX( );
15   public SVGAnimatedLength getRadiusY( );
16 }
17
Popular Tags