niagara-ax/decompiled/org/w3c/dom/svg/SVGGlyphRefElement.java
2026-03-17 13:31:18 -07:00

30 lines
568 B
Java

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;
}