link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,7 @@
package org.apache.batik.dom.util;
import org.w3c.dom.css.CSSStyleDeclaration;
public interface CSSStyleDeclarationFactory {
CSSStyleDeclaration createCSSStyleDeclaration();
}
@@ -0,0 +1,23 @@
package org.apache.batik.dom.util;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import org.w3c.dom.Document;
import org.xml.sax.XMLReader;
public interface DocumentFactory {
Document createDocument(String str, String str2, String str3) throws IOException;
Document createDocument(String str, String str2, String str3, InputStream inputStream) throws IOException;
Document createDocument(String str, String str2, String str3, Reader reader) throws IOException;
Document createDocument(String str, String str2, String str3, XMLReader xMLReader) throws IOException;
DocumentDescriptor getDocumentDescriptor();
boolean isValidating();
void setValidating(boolean z);
}
@@ -0,0 +1,48 @@
package org.apache.batik.dom.util;
import org.w3c.dom.Document;
import org.w3c.dom.events.EventListener;
public interface XMLHttpRequest {
public static final short DONE = (short) 4;
public static final short HEADERS_RECEIVED = (short) 2;
public static final short LOADING = (short) 3;
public static final short OPENED = (short) 1;
public static final short UNSENT = (short) 0;
void abort();
String getAllResponseHeaders();
EventListener getOnreadystatechange();
short getReadyState();
String getResponseHeader(String str);
String getResponseText();
String getResponseXML();
short getStatus();
String getStatusText();
void open(String str, String str2);
void open(String str, String str2, boolean z);
void open(String str, String str2, boolean z, String str3);
void open(String str, String str2, boolean z, String str3, String str4);
void send();
void send(String str);
void send(Document document);
void setOnreadystatechange(EventListener eventListener);
void setRequestHeader(String str, String str2);
}