Sign in
apache
/
xerces-j
/
refs/heads/xml-commons-external
/
.
/
src
/
org
/
w3c
/
dom
/
svg
/
SVGNumber.java
blob: 1dcdc8a23026fc6224346e88c987a2be8c72b93b [
file
] [
log
] [
blame
]
package
org
.
w3c
.
dom
.
svg
;
import
org
.
w3c
.
dom
.
DOMException
;
public
interface
SVGNumber
{
public
float
getValue
(
);
public
void
setValue
(
float
value
)
throws
DOMException
;
}