link start!
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface AttributeCondition extends Condition {
|
||||
String getLocalName();
|
||||
|
||||
String getNamespaceURI();
|
||||
|
||||
boolean getSpecified();
|
||||
|
||||
String getValue();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface CharacterDataSelector extends SimpleSelector {
|
||||
String getData();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface CombinatorCondition extends Condition {
|
||||
Condition getFirstCondition();
|
||||
|
||||
Condition getSecondCondition();
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface Condition {
|
||||
public static final short SAC_AND_CONDITION = (short) 0;
|
||||
public static final short SAC_ATTRIBUTE_CONDITION = (short) 4;
|
||||
public static final short SAC_BEGIN_HYPHEN_ATTRIBUTE_CONDITION = (short) 8;
|
||||
public static final short SAC_CLASS_CONDITION = (short) 9;
|
||||
public static final short SAC_CONTENT_CONDITION = (short) 13;
|
||||
public static final short SAC_ID_CONDITION = (short) 5;
|
||||
public static final short SAC_LANG_CONDITION = (short) 6;
|
||||
public static final short SAC_NEGATIVE_CONDITION = (short) 2;
|
||||
public static final short SAC_ONE_OF_ATTRIBUTE_CONDITION = (short) 7;
|
||||
public static final short SAC_ONLY_CHILD_CONDITION = (short) 11;
|
||||
public static final short SAC_ONLY_TYPE_CONDITION = (short) 12;
|
||||
public static final short SAC_OR_CONDITION = (short) 1;
|
||||
public static final short SAC_POSITIONAL_CONDITION = (short) 3;
|
||||
public static final short SAC_PSEUDO_CLASS_CONDITION = (short) 10;
|
||||
|
||||
short getConditionType();
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ConditionFactory {
|
||||
CombinatorCondition createAndCondition(Condition condition, Condition condition2) throws CSSException;
|
||||
|
||||
AttributeCondition createAttributeCondition(String str, String str2, boolean z, String str3) throws CSSException;
|
||||
|
||||
AttributeCondition createBeginHyphenAttributeCondition(String str, String str2, boolean z, String str3) throws CSSException;
|
||||
|
||||
AttributeCondition createClassCondition(String str, String str2) throws CSSException;
|
||||
|
||||
ContentCondition createContentCondition(String str) throws CSSException;
|
||||
|
||||
AttributeCondition createIdCondition(String str) throws CSSException;
|
||||
|
||||
LangCondition createLangCondition(String str) throws CSSException;
|
||||
|
||||
NegativeCondition createNegativeCondition(Condition condition) throws CSSException;
|
||||
|
||||
AttributeCondition createOneOfAttributeCondition(String str, String str2, boolean z, String str3) throws CSSException;
|
||||
|
||||
Condition createOnlyChildCondition() throws CSSException;
|
||||
|
||||
Condition createOnlyTypeCondition() throws CSSException;
|
||||
|
||||
CombinatorCondition createOrCondition(Condition condition, Condition condition2) throws CSSException;
|
||||
|
||||
PositionalCondition createPositionalCondition(int i, boolean z, boolean z2) throws CSSException;
|
||||
|
||||
AttributeCondition createPseudoClassCondition(String str, String str2) throws CSSException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ConditionalSelector extends SimpleSelector {
|
||||
Condition getCondition();
|
||||
|
||||
SimpleSelector getSimpleSelector();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ContentCondition extends Condition {
|
||||
String getData();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface DescendantSelector extends Selector {
|
||||
Selector getAncestorSelector();
|
||||
|
||||
SimpleSelector getSimpleSelector();
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface DocumentHandler {
|
||||
void comment(String str) throws CSSException;
|
||||
|
||||
void endDocument(InputSource inputSource) throws CSSException;
|
||||
|
||||
void endFontFace() throws CSSException;
|
||||
|
||||
void endMedia(SACMediaList sACMediaList) throws CSSException;
|
||||
|
||||
void endPage(String str, String str2) throws CSSException;
|
||||
|
||||
void endSelector(SelectorList selectorList) throws CSSException;
|
||||
|
||||
void ignorableAtRule(String str) throws CSSException;
|
||||
|
||||
void importStyle(String str, SACMediaList sACMediaList, String str2) throws CSSException;
|
||||
|
||||
void namespaceDeclaration(String str, String str2) throws CSSException;
|
||||
|
||||
void property(String str, LexicalUnit lexicalUnit, boolean z) throws CSSException;
|
||||
|
||||
void startDocument(InputSource inputSource) throws CSSException;
|
||||
|
||||
void startFontFace() throws CSSException;
|
||||
|
||||
void startMedia(SACMediaList sACMediaList) throws CSSException;
|
||||
|
||||
void startPage(String str, String str2) throws CSSException;
|
||||
|
||||
void startSelector(SelectorList selectorList) throws CSSException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ElementSelector extends SimpleSelector {
|
||||
String getLocalName();
|
||||
|
||||
String getNamespaceURI();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ErrorHandler {
|
||||
void error(CSSParseException cSSParseException) throws CSSException;
|
||||
|
||||
void fatalError(CSSParseException cSSParseException) throws CSSException;
|
||||
|
||||
void warning(CSSParseException cSSParseException) throws CSSException;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface LangCondition extends Condition {
|
||||
String getLang();
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface LexicalUnit {
|
||||
public static final short SAC_ATTR = (short) 37;
|
||||
public static final short SAC_CENTIMETER = (short) 19;
|
||||
public static final short SAC_COUNTERS_FUNCTION = (short) 26;
|
||||
public static final short SAC_COUNTER_FUNCTION = (short) 25;
|
||||
public static final short SAC_DEGREE = (short) 28;
|
||||
public static final short SAC_DIMENSION = (short) 42;
|
||||
public static final short SAC_EM = (short) 15;
|
||||
public static final short SAC_EX = (short) 16;
|
||||
public static final short SAC_FUNCTION = (short) 41;
|
||||
public static final short SAC_GRADIAN = (short) 29;
|
||||
public static final short SAC_HERTZ = (short) 33;
|
||||
public static final short SAC_IDENT = (short) 35;
|
||||
public static final short SAC_INCH = (short) 18;
|
||||
public static final short SAC_INHERIT = (short) 12;
|
||||
public static final short SAC_INTEGER = (short) 13;
|
||||
public static final short SAC_KILOHERTZ = (short) 34;
|
||||
public static final short SAC_MILLIMETER = (short) 20;
|
||||
public static final short SAC_MILLISECOND = (short) 31;
|
||||
public static final short SAC_OPERATOR_COMMA = (short) 0;
|
||||
public static final short SAC_OPERATOR_EXP = (short) 6;
|
||||
public static final short SAC_OPERATOR_GE = (short) 10;
|
||||
public static final short SAC_OPERATOR_GT = (short) 8;
|
||||
public static final short SAC_OPERATOR_LE = (short) 9;
|
||||
public static final short SAC_OPERATOR_LT = (short) 7;
|
||||
public static final short SAC_OPERATOR_MINUS = (short) 2;
|
||||
public static final short SAC_OPERATOR_MOD = (short) 5;
|
||||
public static final short SAC_OPERATOR_MULTIPLY = (short) 3;
|
||||
public static final short SAC_OPERATOR_PLUS = (short) 1;
|
||||
public static final short SAC_OPERATOR_SLASH = (short) 4;
|
||||
public static final short SAC_OPERATOR_TILDE = (short) 11;
|
||||
public static final short SAC_PERCENTAGE = (short) 23;
|
||||
public static final short SAC_PICA = (short) 22;
|
||||
public static final short SAC_PIXEL = (short) 17;
|
||||
public static final short SAC_POINT = (short) 21;
|
||||
public static final short SAC_RADIAN = (short) 30;
|
||||
public static final short SAC_REAL = (short) 14;
|
||||
public static final short SAC_RECT_FUNCTION = (short) 38;
|
||||
public static final short SAC_RGBCOLOR = (short) 27;
|
||||
public static final short SAC_SECOND = (short) 32;
|
||||
public static final short SAC_STRING_VALUE = (short) 36;
|
||||
public static final short SAC_SUB_EXPRESSION = (short) 40;
|
||||
public static final short SAC_UNICODERANGE = (short) 39;
|
||||
public static final short SAC_URI = (short) 24;
|
||||
|
||||
String getDimensionUnitText();
|
||||
|
||||
float getFloatValue();
|
||||
|
||||
String getFunctionName();
|
||||
|
||||
int getIntegerValue();
|
||||
|
||||
short getLexicalUnitType();
|
||||
|
||||
LexicalUnit getNextLexicalUnit();
|
||||
|
||||
LexicalUnit getParameters();
|
||||
|
||||
LexicalUnit getPreviousLexicalUnit();
|
||||
|
||||
String getStringValue();
|
||||
|
||||
LexicalUnit getSubValues();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface Locator {
|
||||
int getColumnNumber();
|
||||
|
||||
int getLineNumber();
|
||||
|
||||
String getURI();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface NegativeCondition extends Condition {
|
||||
Condition getCondition();
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface NegativeSelector extends SimpleSelector {
|
||||
SimpleSelector getSimpleSelector();
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Locale;
|
||||
|
||||
public interface Parser {
|
||||
String getParserVersion();
|
||||
|
||||
boolean parsePriority(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
LexicalUnit parsePropertyValue(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
void parseRule(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
SelectorList parseSelectors(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
void parseStyleDeclaration(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
void parseStyleSheet(String str) throws CSSException, IOException;
|
||||
|
||||
void parseStyleSheet(InputSource inputSource) throws CSSException, IOException;
|
||||
|
||||
void setConditionFactory(ConditionFactory conditionFactory);
|
||||
|
||||
void setDocumentHandler(DocumentHandler documentHandler);
|
||||
|
||||
void setErrorHandler(ErrorHandler errorHandler);
|
||||
|
||||
void setLocale(Locale locale) throws CSSException;
|
||||
|
||||
void setSelectorFactory(SelectorFactory selectorFactory);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface PositionalCondition extends Condition {
|
||||
int getPosition();
|
||||
|
||||
boolean getType();
|
||||
|
||||
boolean getTypeNode();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface ProcessingInstructionSelector extends SimpleSelector {
|
||||
String getData();
|
||||
|
||||
String getTarget();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface SACMediaList {
|
||||
int getLength();
|
||||
|
||||
String item(int i);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface Selector {
|
||||
public static final short SAC_ANY_NODE_SELECTOR = (short) 1;
|
||||
public static final short SAC_CDATA_SECTION_NODE_SELECTOR = (short) 6;
|
||||
public static final short SAC_CHILD_SELECTOR = (short) 11;
|
||||
public static final short SAC_COMMENT_NODE_SELECTOR = (short) 8;
|
||||
public static final short SAC_CONDITIONAL_SELECTOR = (short) 0;
|
||||
public static final short SAC_DESCENDANT_SELECTOR = (short) 10;
|
||||
public static final short SAC_DIRECT_ADJACENT_SELECTOR = (short) 12;
|
||||
public static final short SAC_ELEMENT_NODE_SELECTOR = (short) 4;
|
||||
public static final short SAC_NEGATIVE_SELECTOR = (short) 3;
|
||||
public static final short SAC_PROCESSING_INSTRUCTION_NODE_SELECTOR = (short) 7;
|
||||
public static final short SAC_PSEUDO_ELEMENT_SELECTOR = (short) 9;
|
||||
public static final short SAC_ROOT_NODE_SELECTOR = (short) 2;
|
||||
public static final short SAC_TEXT_NODE_SELECTOR = (short) 5;
|
||||
|
||||
short getSelectorType();
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface SelectorFactory {
|
||||
SimpleSelector createAnyNodeSelector() throws CSSException;
|
||||
|
||||
CharacterDataSelector createCDataSectionSelector(String str) throws CSSException;
|
||||
|
||||
DescendantSelector createChildSelector(Selector selector, SimpleSelector simpleSelector) throws CSSException;
|
||||
|
||||
CharacterDataSelector createCommentSelector(String str) throws CSSException;
|
||||
|
||||
ConditionalSelector createConditionalSelector(SimpleSelector simpleSelector, Condition condition) throws CSSException;
|
||||
|
||||
DescendantSelector createDescendantSelector(Selector selector, SimpleSelector simpleSelector) throws CSSException;
|
||||
|
||||
SiblingSelector createDirectAdjacentSelector(short s, Selector selector, SimpleSelector simpleSelector) throws CSSException;
|
||||
|
||||
ElementSelector createElementSelector(String str, String str2) throws CSSException;
|
||||
|
||||
NegativeSelector createNegativeSelector(SimpleSelector simpleSelector) throws CSSException;
|
||||
|
||||
ProcessingInstructionSelector createProcessingInstructionSelector(String str, String str2) throws CSSException;
|
||||
|
||||
ElementSelector createPseudoElementSelector(String str, String str2) throws CSSException;
|
||||
|
||||
SimpleSelector createRootNodeSelector() throws CSSException;
|
||||
|
||||
CharacterDataSelector createTextNodeSelector(String str) throws CSSException;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface SelectorList {
|
||||
int getLength();
|
||||
|
||||
Selector item(int i);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface SiblingSelector extends Selector {
|
||||
public static final short ANY_NODE = (short) 201;
|
||||
|
||||
short getNodeType();
|
||||
|
||||
Selector getSelector();
|
||||
|
||||
SimpleSelector getSiblingSelector();
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.w3c.css.sac;
|
||||
|
||||
public interface SimpleSelector extends Selector {
|
||||
}
|
||||
@@ -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();
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user