File: SVGStyleElement.java

package info (click to toggle)
xml-commons-external 1.4.01-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,484 kB
  • sloc: java: 12,856; xml: 72; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 627 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

package org.w3c.dom.svg;

import org.w3c.dom.DOMException;

public interface SVGStyleElement extends 
               SVGElement {
  public String getXMLspace( );
  public void      setXMLspace( String xmlspace )
                       throws DOMException;
  public String getType( );
  public void      setType( String type )
                       throws DOMException;
  public String getMedia( );
  public void      setMedia( String media )
                       throws DOMException;
  public String getTitle( );
  public void      setTitle( String title )
                       throws DOMException;
}