link start!
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom;
|
||||
|
||||
public interface ElementTraversal {
|
||||
int getChildElementCount();
|
||||
|
||||
Element getFirstElementChild();
|
||||
|
||||
Element getLastElementChild();
|
||||
|
||||
Element getNextElementSibling();
|
||||
|
||||
Element getPreviousElementSibling();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
public interface CustomEvent extends Event {
|
||||
Object getDetail();
|
||||
|
||||
void initCustomEventNS(String str, String str2, boolean z, boolean z2, Object obj);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface DocumentEvent {
|
||||
boolean canDispatch(String str, String str2);
|
||||
|
||||
Event createEvent(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
public interface Event {
|
||||
public static final short AT_TARGET = (short) 2;
|
||||
public static final short BUBBLING_PHASE = (short) 3;
|
||||
public static final short CAPTURING_PHASE = (short) 1;
|
||||
|
||||
boolean getBubbles();
|
||||
|
||||
boolean getCancelable();
|
||||
|
||||
EventTarget getCurrentTarget();
|
||||
|
||||
boolean getDefaultPrevented();
|
||||
|
||||
short getEventPhase();
|
||||
|
||||
String getNamespaceURI();
|
||||
|
||||
EventTarget getTarget();
|
||||
|
||||
long getTimeStamp();
|
||||
|
||||
String getType();
|
||||
|
||||
void initEvent(String str, boolean z, boolean z2);
|
||||
|
||||
void initEventNS(String str, String str2, boolean z, boolean z2);
|
||||
|
||||
void preventDefault();
|
||||
|
||||
void stopImmediatePropagation();
|
||||
|
||||
void stopPropagation();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
public interface EventListener {
|
||||
void handleEvent(Event event);
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface EventTarget {
|
||||
void addEventListener(String str, EventListener eventListener, boolean z);
|
||||
|
||||
void addEventListenerNS(String str, String str2, EventListener eventListener, boolean z, Object obj);
|
||||
|
||||
boolean dispatchEvent(Event event) throws EventException, DOMException;
|
||||
|
||||
void removeEventListener(String str, EventListener eventListener, boolean z);
|
||||
|
||||
void removeEventListenerNS(String str, String str2, EventListener eventListener, boolean z);
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.views.AbstractView;
|
||||
|
||||
public interface KeyboardEvent extends UIEvent {
|
||||
public static final int DOM_KEY_LOCATION_LEFT = 1;
|
||||
public static final int DOM_KEY_LOCATION_NUMPAD = 3;
|
||||
public static final int DOM_KEY_LOCATION_RIGHT = 2;
|
||||
public static final int DOM_KEY_LOCATION_STANDARD = 0;
|
||||
|
||||
boolean getAltKey();
|
||||
|
||||
boolean getCtrlKey();
|
||||
|
||||
String getKeyIdentifier();
|
||||
|
||||
int getKeyLocation();
|
||||
|
||||
boolean getMetaKey();
|
||||
|
||||
boolean getModifierState(String str);
|
||||
|
||||
boolean getShiftKey();
|
||||
|
||||
void initKeyboardEvent(String str, boolean z, boolean z2, AbstractView abstractView, String str2, int i, String str3);
|
||||
|
||||
void initKeyboardEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, String str3, int i, String str4);
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.views.AbstractView;
|
||||
|
||||
public interface MouseEvent extends UIEvent {
|
||||
boolean getAltKey();
|
||||
|
||||
short getButton();
|
||||
|
||||
int getClientX();
|
||||
|
||||
int getClientY();
|
||||
|
||||
boolean getCtrlKey();
|
||||
|
||||
boolean getMetaKey();
|
||||
|
||||
boolean getModifierState(String str);
|
||||
|
||||
EventTarget getRelatedTarget();
|
||||
|
||||
int getScreenX();
|
||||
|
||||
int getScreenY();
|
||||
|
||||
boolean getShiftKey();
|
||||
|
||||
void initMouseEvent(String str, boolean z, boolean z2, AbstractView abstractView, int i, int i2, int i3, int i4, int i5, boolean z3, boolean z4, boolean z5, boolean z6, short s, EventTarget eventTarget);
|
||||
|
||||
void initMouseEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, int i, int i2, int i3, int i4, int i5, short s, EventTarget eventTarget, String str3);
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.Node;
|
||||
|
||||
public interface MutationEvent extends Event {
|
||||
public static final short ADDITION = (short) 2;
|
||||
public static final short MODIFICATION = (short) 1;
|
||||
public static final short REMOVAL = (short) 3;
|
||||
|
||||
short getAttrChange();
|
||||
|
||||
String getAttrName();
|
||||
|
||||
String getNewValue();
|
||||
|
||||
String getPrevValue();
|
||||
|
||||
Node getRelatedNode();
|
||||
|
||||
void initMutationEvent(String str, boolean z, boolean z2, Node node, String str2, String str3, String str4, short s);
|
||||
|
||||
void initMutationEventNS(String str, String str2, boolean z, boolean z2, Node node, String str3, String str4, String str5, short s);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.Node;
|
||||
|
||||
public interface MutationNameEvent extends MutationEvent {
|
||||
String getPrevNamespaceURI();
|
||||
|
||||
String getPrevNodeName();
|
||||
|
||||
void initMutationNameEvent(String str, boolean z, boolean z2, Node node, String str2, String str3);
|
||||
|
||||
void initMutationNameEventNS(String str, String str2, boolean z, boolean z2, Node node, String str3, String str4);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.views.AbstractView;
|
||||
|
||||
public interface TextEvent extends UIEvent {
|
||||
String getData();
|
||||
|
||||
void initTextEvent(String str, boolean z, boolean z2, AbstractView abstractView, String str2);
|
||||
|
||||
void initTextEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, String str3);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.events;
|
||||
|
||||
import org.w3c.dom.views.AbstractView;
|
||||
|
||||
public interface UIEvent extends Event {
|
||||
int getDetail();
|
||||
|
||||
AbstractView getView();
|
||||
|
||||
void initUIEvent(String str, boolean z, boolean z2, AbstractView abstractView, int i);
|
||||
|
||||
void initUIEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, int i);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.smil;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface ElementTimeControl {
|
||||
boolean beginElement() throws DOMException;
|
||||
|
||||
boolean beginElementAt(float f) throws DOMException;
|
||||
|
||||
boolean endElement() throws DOMException;
|
||||
|
||||
boolean endElementAt(float f) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package org.w3c.dom.smil;
|
||||
|
||||
import org.w3c.dom.events.Event;
|
||||
import org.w3c.dom.views.AbstractView;
|
||||
|
||||
public interface TimeEvent extends Event {
|
||||
int getDetail();
|
||||
|
||||
AbstractView getView();
|
||||
|
||||
void initTimeEvent(String str, AbstractView abstractView, int i);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface EventListenerInitializer {
|
||||
void initializeEventListeners(SVGDocument sVGDocument);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface GetSVGDocument {
|
||||
SVGDocument getSVGDocument() throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGAElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
SVGAnimatedString getTarget();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAltGlyphDefElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAltGlyphElement extends SVGTextPositioningElement, SVGURIReference {
|
||||
String getFormat();
|
||||
|
||||
String getGlyphRef();
|
||||
|
||||
void setFormat(String str) throws DOMException;
|
||||
|
||||
void setGlyphRef(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAltGlyphItemElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAngle {
|
||||
public static final short SVG_ANGLETYPE_DEG = (short) 2;
|
||||
public static final short SVG_ANGLETYPE_GRAD = (short) 4;
|
||||
public static final short SVG_ANGLETYPE_RAD = (short) 3;
|
||||
public static final short SVG_ANGLETYPE_UNKNOWN = (short) 0;
|
||||
public static final short SVG_ANGLETYPE_UNSPECIFIED = (short) 1;
|
||||
|
||||
void convertToSpecifiedUnits(short s);
|
||||
|
||||
short getUnitType();
|
||||
|
||||
float getValue();
|
||||
|
||||
String getValueAsString();
|
||||
|
||||
float getValueInSpecifiedUnits();
|
||||
|
||||
void newValueSpecifiedUnits(short s, float f);
|
||||
|
||||
void setValue(float f) throws DOMException;
|
||||
|
||||
void setValueAsString(String str) throws DOMException;
|
||||
|
||||
void setValueInSpecifiedUnits(float f) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimateColorElement extends SVGAnimationElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimateElement extends SVGAnimationElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimateMotionElement extends SVGAnimationElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimateTransformElement extends SVGAnimationElement {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedAngle {
|
||||
SVGAngle getAnimVal();
|
||||
|
||||
SVGAngle getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAnimatedBoolean {
|
||||
boolean getAnimVal();
|
||||
|
||||
boolean getBaseVal();
|
||||
|
||||
void setBaseVal(boolean z) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAnimatedEnumeration {
|
||||
short getAnimVal();
|
||||
|
||||
short getBaseVal();
|
||||
|
||||
void setBaseVal(short s) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAnimatedInteger {
|
||||
int getAnimVal();
|
||||
|
||||
int getBaseVal();
|
||||
|
||||
void setBaseVal(int i) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedLength {
|
||||
SVGLength getAnimVal();
|
||||
|
||||
SVGLength getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedLengthList {
|
||||
SVGLengthList getAnimVal();
|
||||
|
||||
SVGLengthList getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAnimatedNumber {
|
||||
float getAnimVal();
|
||||
|
||||
float getBaseVal();
|
||||
|
||||
void setBaseVal(float f) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedNumberList {
|
||||
SVGNumberList getAnimVal();
|
||||
|
||||
SVGNumberList getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedPathData {
|
||||
SVGPathSegList getAnimatedNormalizedPathSegList();
|
||||
|
||||
SVGPathSegList getAnimatedPathSegList();
|
||||
|
||||
SVGPathSegList getNormalizedPathSegList();
|
||||
|
||||
SVGPathSegList getPathSegList();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedPoints {
|
||||
SVGPointList getAnimatedPoints();
|
||||
|
||||
SVGPointList getPoints();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedPreserveAspectRatio {
|
||||
SVGPreserveAspectRatio getAnimVal();
|
||||
|
||||
SVGPreserveAspectRatio getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedRect {
|
||||
SVGRect getAnimVal();
|
||||
|
||||
SVGRect getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGAnimatedString {
|
||||
String getAnimVal();
|
||||
|
||||
String getBaseVal();
|
||||
|
||||
void setBaseVal(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGAnimatedTransformList {
|
||||
SVGTransformList getAnimVal();
|
||||
|
||||
SVGTransformList getBaseVal();
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
import org.w3c.dom.smil.ElementTimeControl;
|
||||
|
||||
public interface SVGAnimationElement extends SVGElement, SVGTests, SVGExternalResourcesRequired, ElementTimeControl, EventTarget {
|
||||
float getCurrentTime();
|
||||
|
||||
float getSimpleDuration() throws DOMException;
|
||||
|
||||
float getStartTime();
|
||||
|
||||
SVGElement getTargetElement();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.css.CSSRule;
|
||||
|
||||
public interface SVGCSSRule extends CSSRule {
|
||||
public static final short COLOR_PROFILE_RULE = (short) 7;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGCircleElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
SVGAnimatedLength getCx();
|
||||
|
||||
SVGAnimatedLength getCy();
|
||||
|
||||
SVGAnimatedLength getR();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGClipPathElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, SVGUnitTypes {
|
||||
SVGAnimatedEnumeration getClipPathUnits();
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.css.CSSValue;
|
||||
import org.w3c.dom.css.RGBColor;
|
||||
|
||||
public interface SVGColor extends CSSValue {
|
||||
public static final short SVG_COLORTYPE_CURRENTCOLOR = (short) 3;
|
||||
public static final short SVG_COLORTYPE_RGBCOLOR = (short) 1;
|
||||
public static final short SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = (short) 2;
|
||||
public static final short SVG_COLORTYPE_UNKNOWN = (short) 0;
|
||||
|
||||
short getColorType();
|
||||
|
||||
SVGICCColor getICCColor();
|
||||
|
||||
RGBColor getRGBColor();
|
||||
|
||||
void setColor(short s, String str, String str2) throws SVGException;
|
||||
|
||||
void setRGBColor(String str) throws SVGException;
|
||||
|
||||
void setRGBColorICCColor(String str, String str2) throws SVGException;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGColorProfileElement extends SVGElement, SVGURIReference, SVGRenderingIntent {
|
||||
String getLocal();
|
||||
|
||||
String getName();
|
||||
|
||||
short getRenderingIntent();
|
||||
|
||||
void setLocal(String str) throws DOMException;
|
||||
|
||||
void setName(String str) throws DOMException;
|
||||
|
||||
void setRenderingIntent(short s) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGColorProfileRule extends SVGCSSRule, SVGRenderingIntent {
|
||||
String getName();
|
||||
|
||||
short getRenderingIntent();
|
||||
|
||||
String getSrc();
|
||||
|
||||
void setName(String str) throws DOMException;
|
||||
|
||||
void setRenderingIntent(short s) throws DOMException;
|
||||
|
||||
void setSrc(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGComponentTransferFunctionElement extends SVGElement {
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = (short) 3;
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = (short) 5;
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = (short) 1;
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = (short) 4;
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_TABLE = (short) 2;
|
||||
public static final short SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedNumber getAmplitude();
|
||||
|
||||
SVGAnimatedNumber getExponent();
|
||||
|
||||
SVGAnimatedNumber getIntercept();
|
||||
|
||||
SVGAnimatedNumber getOffset();
|
||||
|
||||
SVGAnimatedNumber getSlope();
|
||||
|
||||
SVGAnimatedNumberList getTableValues();
|
||||
|
||||
SVGAnimatedEnumeration getType();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGCursorElement extends SVGElement, SVGURIReference, SVGTests, SVGExternalResourcesRequired {
|
||||
SVGAnimatedLength getX();
|
||||
|
||||
SVGAnimatedLength getY();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGDefinitionSrcElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGDefsElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGDescElement extends SVGElement, SVGLangSpace, SVGStylable {
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.Document;
|
||||
import org.w3c.dom.events.DocumentEvent;
|
||||
|
||||
public interface SVGDocument extends Document, DocumentEvent {
|
||||
String getDomain();
|
||||
|
||||
String getReferrer();
|
||||
|
||||
SVGSVGElement getRootElement();
|
||||
|
||||
String getTitle();
|
||||
|
||||
String getURL();
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
import org.w3c.dom.Element;
|
||||
|
||||
public interface SVGElement extends Element {
|
||||
String getId();
|
||||
|
||||
SVGSVGElement getOwnerSVGElement();
|
||||
|
||||
SVGElement getViewportElement();
|
||||
|
||||
String getXMLbase();
|
||||
|
||||
void setId(String str) throws DOMException;
|
||||
|
||||
void setXMLbase(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGElementInstance extends EventTarget {
|
||||
SVGElementInstanceList getChildNodes();
|
||||
|
||||
SVGElement getCorrespondingElement();
|
||||
|
||||
SVGUseElement getCorrespondingUseElement();
|
||||
|
||||
SVGElementInstance getFirstChild();
|
||||
|
||||
SVGElementInstance getLastChild();
|
||||
|
||||
SVGElementInstance getNextSibling();
|
||||
|
||||
SVGElementInstance getParentNode();
|
||||
|
||||
SVGElementInstance getPreviousSibling();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGElementInstanceList {
|
||||
int getLength();
|
||||
|
||||
SVGElementInstance item(int i);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGEllipseElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
SVGAnimatedLength getCx();
|
||||
|
||||
SVGAnimatedLength getCy();
|
||||
|
||||
SVGAnimatedLength getRx();
|
||||
|
||||
SVGAnimatedLength getRy();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.Event;
|
||||
|
||||
public interface SVGEvent extends Event {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGExternalResourcesRequired {
|
||||
SVGAnimatedBoolean getExternalResourcesRequired();
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEBlendElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_FEBLEND_MODE_DARKEN = (short) 4;
|
||||
public static final short SVG_FEBLEND_MODE_LIGHTEN = (short) 5;
|
||||
public static final short SVG_FEBLEND_MODE_MULTIPLY = (short) 2;
|
||||
public static final short SVG_FEBLEND_MODE_NORMAL = (short) 1;
|
||||
public static final short SVG_FEBLEND_MODE_SCREEN = (short) 3;
|
||||
public static final short SVG_FEBLEND_MODE_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedString getIn2();
|
||||
|
||||
SVGAnimatedEnumeration getMode();
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEColorMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_FECOLORMATRIX_TYPE_HUEROTATE = (short) 3;
|
||||
public static final short SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = (short) 4;
|
||||
public static final short SVG_FECOLORMATRIX_TYPE_MATRIX = (short) 1;
|
||||
public static final short SVG_FECOLORMATRIX_TYPE_SATURATE = (short) 2;
|
||||
public static final short SVG_FECOLORMATRIX_TYPE_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedEnumeration getType();
|
||||
|
||||
SVGAnimatedNumberList getValues();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEComponentTransferElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedString getIn1();
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFECompositeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = (short) 6;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_ATOP = (short) 4;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_IN = (short) 2;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_OUT = (short) 3;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_OVER = (short) 1;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_UNKNOWN = (short) 0;
|
||||
public static final short SVG_FECOMPOSITE_OPERATOR_XOR = (short) 5;
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedString getIn2();
|
||||
|
||||
SVGAnimatedNumber getK1();
|
||||
|
||||
SVGAnimatedNumber getK2();
|
||||
|
||||
SVGAnimatedNumber getK3();
|
||||
|
||||
SVGAnimatedNumber getK4();
|
||||
|
||||
SVGAnimatedEnumeration getOperator();
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_EDGEMODE_DUPLICATE = (short) 1;
|
||||
public static final short SVG_EDGEMODE_NONE = (short) 3;
|
||||
public static final short SVG_EDGEMODE_UNKNOWN = (short) 0;
|
||||
public static final short SVG_EDGEMODE_WRAP = (short) 2;
|
||||
|
||||
SVGAnimatedNumber getBias();
|
||||
|
||||
SVGAnimatedNumber getDivisor();
|
||||
|
||||
SVGAnimatedEnumeration getEdgeMode();
|
||||
|
||||
SVGAnimatedNumberList getKernelMatrix();
|
||||
|
||||
SVGAnimatedNumber getKernelUnitLengthX();
|
||||
|
||||
SVGAnimatedNumber getKernelUnitLengthY();
|
||||
|
||||
SVGAnimatedInteger getOrderX();
|
||||
|
||||
SVGAnimatedInteger getOrderY();
|
||||
|
||||
SVGAnimatedBoolean getPreserveAlpha();
|
||||
|
||||
SVGAnimatedInteger getTargetX();
|
||||
|
||||
SVGAnimatedInteger getTargetY();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEDiffuseLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedNumber getDiffuseConstant();
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedNumber getKernelUnitLengthX();
|
||||
|
||||
SVGAnimatedNumber getKernelUnitLengthY();
|
||||
|
||||
SVGAnimatedNumber getSurfaceScale();
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_CHANNEL_A = (short) 4;
|
||||
public static final short SVG_CHANNEL_B = (short) 3;
|
||||
public static final short SVG_CHANNEL_G = (short) 2;
|
||||
public static final short SVG_CHANNEL_R = (short) 1;
|
||||
public static final short SVG_CHANNEL_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedString getIn2();
|
||||
|
||||
SVGAnimatedNumber getScale();
|
||||
|
||||
SVGAnimatedEnumeration getXChannelSelector();
|
||||
|
||||
SVGAnimatedEnumeration getYChannelSelector();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEDistantLightElement extends SVGElement {
|
||||
SVGAnimatedNumber getAzimuth();
|
||||
|
||||
SVGAnimatedNumber getElevation();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEFloodElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedString getIn1();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEFuncAElement extends SVGComponentTransferFunctionElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEFuncBElement extends SVGComponentTransferFunctionElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEFuncGElement extends SVGComponentTransferFunctionElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEFuncRElement extends SVGComponentTransferFunctionElement {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEGaussianBlurElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedNumber getStdDeviationX();
|
||||
|
||||
SVGAnimatedNumber getStdDeviationY();
|
||||
|
||||
void setStdDeviation(float f, float f2);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEImageElement extends SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEMergeElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEMergeNodeElement extends SVGElement {
|
||||
SVGAnimatedString getIn1();
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_MORPHOLOGY_OPERATOR_DILATE = (short) 2;
|
||||
public static final short SVG_MORPHOLOGY_OPERATOR_ERODE = (short) 1;
|
||||
public static final short SVG_MORPHOLOGY_OPERATOR_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedEnumeration getOperator();
|
||||
|
||||
SVGAnimatedNumber getRadiusX();
|
||||
|
||||
SVGAnimatedNumber getRadiusY();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEOffsetElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedNumber getDx();
|
||||
|
||||
SVGAnimatedNumber getDy();
|
||||
|
||||
SVGAnimatedString getIn1();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFEPointLightElement extends SVGElement {
|
||||
SVGAnimatedNumber getX();
|
||||
|
||||
SVGAnimatedNumber getY();
|
||||
|
||||
SVGAnimatedNumber getZ();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFESpecularLightingElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedString getIn1();
|
||||
|
||||
SVGAnimatedNumber getSpecularConstant();
|
||||
|
||||
SVGAnimatedNumber getSpecularExponent();
|
||||
|
||||
SVGAnimatedNumber getSurfaceScale();
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFESpotLightElement extends SVGElement {
|
||||
SVGAnimatedNumber getLimitingConeAngle();
|
||||
|
||||
SVGAnimatedNumber getPointsAtX();
|
||||
|
||||
SVGAnimatedNumber getPointsAtY();
|
||||
|
||||
SVGAnimatedNumber getPointsAtZ();
|
||||
|
||||
SVGAnimatedNumber getSpecularExponent();
|
||||
|
||||
SVGAnimatedNumber getX();
|
||||
|
||||
SVGAnimatedNumber getY();
|
||||
|
||||
SVGAnimatedNumber getZ();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFETileElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
SVGAnimatedString getIn1();
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFETurbulenceElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
|
||||
public static final short SVG_STITCHTYPE_NOSTITCH = (short) 2;
|
||||
public static final short SVG_STITCHTYPE_STITCH = (short) 1;
|
||||
public static final short SVG_STITCHTYPE_UNKNOWN = (short) 0;
|
||||
public static final short SVG_TURBULENCE_TYPE_FRACTALNOISE = (short) 1;
|
||||
public static final short SVG_TURBULENCE_TYPE_TURBULENCE = (short) 2;
|
||||
public static final short SVG_TURBULENCE_TYPE_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedNumber getBaseFrequencyX();
|
||||
|
||||
SVGAnimatedNumber getBaseFrequencyY();
|
||||
|
||||
SVGAnimatedInteger getNumOctaves();
|
||||
|
||||
SVGAnimatedNumber getSeed();
|
||||
|
||||
SVGAnimatedEnumeration getStitchTiles();
|
||||
|
||||
SVGAnimatedEnumeration getType();
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFilterElement extends SVGElement, SVGURIReference, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGUnitTypes {
|
||||
SVGAnimatedInteger getFilterResX();
|
||||
|
||||
SVGAnimatedInteger getFilterResY();
|
||||
|
||||
SVGAnimatedEnumeration getFilterUnits();
|
||||
|
||||
SVGAnimatedLength getHeight();
|
||||
|
||||
SVGAnimatedEnumeration getPrimitiveUnits();
|
||||
|
||||
SVGAnimatedLength getWidth();
|
||||
|
||||
SVGAnimatedLength getX();
|
||||
|
||||
SVGAnimatedLength getY();
|
||||
|
||||
void setFilterRes(int i, int i2);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFilterPrimitiveStandardAttributes extends SVGStylable {
|
||||
SVGAnimatedLength getHeight();
|
||||
|
||||
SVGAnimatedString getResult();
|
||||
|
||||
SVGAnimatedLength getWidth();
|
||||
|
||||
SVGAnimatedLength getX();
|
||||
|
||||
SVGAnimatedLength getY();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFitToViewBox {
|
||||
SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
|
||||
|
||||
SVGAnimatedRect getViewBox();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontElement extends SVGElement, SVGExternalResourcesRequired, SVGStylable {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontFaceElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontFaceFormatElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontFaceNameElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontFaceSrcElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGFontFaceUriElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGForeignObjectElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
SVGAnimatedLength getHeight();
|
||||
|
||||
SVGAnimatedLength getWidth();
|
||||
|
||||
SVGAnimatedLength getX();
|
||||
|
||||
SVGAnimatedLength getY();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGGElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGGlyphElement extends SVGElement, SVGStylable {
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGGlyphRefElement extends SVGElement, SVGURIReference, SVGStylable {
|
||||
float getDx();
|
||||
|
||||
float getDy();
|
||||
|
||||
String getFormat();
|
||||
|
||||
String getGlyphRef();
|
||||
|
||||
float getX();
|
||||
|
||||
float getY();
|
||||
|
||||
void setDx(float f) throws DOMException;
|
||||
|
||||
void setDy(float f) throws DOMException;
|
||||
|
||||
void setFormat(String str) throws DOMException;
|
||||
|
||||
void setGlyphRef(String str) throws DOMException;
|
||||
|
||||
void setX(float f) throws DOMException;
|
||||
|
||||
void setY(float f) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGGradientElement extends SVGElement, SVGURIReference, SVGExternalResourcesRequired, SVGStylable, SVGUnitTypes {
|
||||
public static final short SVG_SPREADMETHOD_PAD = (short) 1;
|
||||
public static final short SVG_SPREADMETHOD_REFLECT = (short) 2;
|
||||
public static final short SVG_SPREADMETHOD_REPEAT = (short) 3;
|
||||
public static final short SVG_SPREADMETHOD_UNKNOWN = (short) 0;
|
||||
|
||||
SVGAnimatedTransformList getGradientTransform();
|
||||
|
||||
SVGAnimatedEnumeration getGradientUnits();
|
||||
|
||||
SVGAnimatedEnumeration getSpreadMethod();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
public interface SVGHKernElement extends SVGElement {
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGICCColor {
|
||||
String getColorProfile();
|
||||
|
||||
SVGNumberList getColors();
|
||||
|
||||
void setColorProfile(String str) throws DOMException;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.events.EventTarget;
|
||||
|
||||
public interface SVGImageElement extends SVGElement, SVGURIReference, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, SVGTransformable, EventTarget {
|
||||
SVGAnimatedLength getHeight();
|
||||
|
||||
SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();
|
||||
|
||||
SVGAnimatedLength getWidth();
|
||||
|
||||
SVGAnimatedLength getX();
|
||||
|
||||
SVGAnimatedLength getY();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package org.w3c.dom.svg;
|
||||
|
||||
import org.w3c.dom.DOMException;
|
||||
|
||||
public interface SVGLangSpace {
|
||||
String getXMLlang();
|
||||
|
||||
String getXMLspace();
|
||||
|
||||
void setXMLlang(String str) throws DOMException;
|
||||
|
||||
void setXMLspace(String str) throws DOMException;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user