From 65f0e5e2c221ded631876b60e1caed767a298aaa Mon Sep 17 00:00:00 2001 From: kitfox Date: Fri, 13 Apr 2007 17:20:05 +0000 Subject: Switching to W3C's Java binding. git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@25 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b --- .../salamander/svg/paint/SVGMarkerElement.java | 100 --------------------- 1 file changed, 100 deletions(-) delete mode 100644 src/main/java/com/kitfox/salamander/svg/paint/SVGMarkerElement.java (limited to 'src/main/java/com/kitfox/salamander/svg/paint/SVGMarkerElement.java') diff --git a/src/main/java/com/kitfox/salamander/svg/paint/SVGMarkerElement.java b/src/main/java/com/kitfox/salamander/svg/paint/SVGMarkerElement.java deleted file mode 100644 index 476147b..0000000 --- a/src/main/java/com/kitfox/salamander/svg/paint/SVGMarkerElement.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * SVGMarkerElement.java - * - * Created on April 13, 2007, 9:59 AM - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package com.kitfox.salamander.svg.paint; - -import com.kitfox.salamander.svg.basic.SVGAngle; -import com.kitfox.salamander.svg.basic.SVGAnimatedAngle; -import com.kitfox.salamander.svg.basic.SVGAnimatedEnumeration; -import com.kitfox.salamander.svg.basic.SVGAnimatedLength; -import com.kitfox.salamander.svg.basic.SVGElement; -import com.kitfox.salamander.svg.basic.SVGExternalResourcesRequired; -import com.kitfox.salamander.svg.basic.SVGFitToViewBox; -import com.kitfox.salamander.svg.basic.SVGLangSpace; -import com.kitfox.salamander.svg.basic.SVGStylable; - -/** - * - * The SVGMarkerElement interface corresponds to the 'marker' element. - * @author kitfox - */ -public interface SVGMarkerElement extends SVGElement, - SVGLangSpace, - SVGExternalResourcesRequired, - SVGStylable, - SVGFitToViewBox -{ - public static enum Units - { - /** - * The marker unit type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type. - */ - UNKNOWN, - /** - * The value of attribute markerUnits is 'userSpaceOnUse'. - */ - USER_SPACE_ON_USE, - /** - * The value of attribute markerUnits is 'strokeWidth'. - */ - STROKE_WIDTH}; - public static enum Orient - { - /** - * The marker orientation is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type. - */ - UNKNOWN, - /** - * Attribute orient has value 'auto'. - */ - AUTO, - /** - * Attribute orient has an angle value. - */ - ANGLE}; - - /** - * Corresponds to attribute refX on the given 'marker' element. - */ - public SVGAnimatedLength getRefX(); - /** - * Corresponds to attribute refY on the given 'marker' element. - */ - public SVGAnimatedLength getRefY(); - /** - * Corresponds to attribute markerUnits on the given 'marker' element. One of the Marker Units Types defined above. - */ - public SVGAnimatedEnumeration getMarkerUnits(); - /** - * Corresponds to attribute markerWidth on the given 'marker' element. - */ - public SVGAnimatedLength getMarkerWidth(); - /** - * Corresponds to attribute markerHeight on the given 'marker' element. - */ - public SVGAnimatedLength getMarkerHeight(); - /** - * Corresponds to attribute orient on the given 'marker' element. One of the Marker Orientation Types defined above. - */ - public SVGAnimatedEnumeration getOrientType(); - /** - * Corresponds to attribute orient on the given 'marker' element. If markerUnits is SVG_MARKER_ORIENT_ANGLE, the angle value for attribute orient; otherwise, it will be set to zero. - */ - public SVGAnimatedAngle getOrientAngle(); - /** - * Sets the value of attribute orient to 'auto'. - */ - public void setOrientToAuto(); - /** - * Sets the value of attribute orient to the given angle. - * @param angle The angle value to use for attribute orient. - */ - public void setOrientToAngle(SVGAngle angle); - -} -- cgit v1.2.3-55-g7522