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,18 @@
package org.apache.batik.css.engine.value.svg;
import org.apache.batik.css.engine.value.Value;
import org.w3c.dom.DOMException;
public interface SVGValue extends Value {
float getColor(int i) throws DOMException;
String getColorProfile() throws DOMException;
short getColorType() throws DOMException;
int getNumberOfColors() throws DOMException;
short getPaintType() throws DOMException;
String getUri() throws DOMException;
}