summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/color/SVGColorProfileElement.java
blob: d6a74bd013798edd7892f5ad611af457f4272017 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * SVGColorProfileElement.java
 *
 * Created on April 13, 2007, 10:05 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.color;

import com.kitfox.salamander.svg.DOMString;
import com.kitfox.salamander.svg.basic.SVGElement;
import com.kitfox.salamander.svg.basic.SVGRenderingIntent;
import com.kitfox.salamander.svg.basic.SVGURIReference;

/**
 * The SVGColorProfileElement  interface corresponds to the 'color-profile' element.
 * @author kitfox
 */
public interface SVGColorProfileElement extends SVGElement,
        SVGURIReference,
        SVGRenderingIntent
{
    /**
     * Corresponds to attribute local on the given element.
     */
    public DOMString getLocal();
    /**
     * Corresponds to attribute name on the given element.
     */
    public DOMString getName();
    /**
     * Corresponds to attribute rendering-intent on the given element. The type of rendering intent, identified by one of the SVGRenderingIntent constants.
     */
    public SVGRenderingIntent getRenderingIntent();
}