summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/figures-demo/figures/ColorControl.java
blob: 46d1ba42886da98b6c48551fcb12630b89af16dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Copyright (c) 2002 Palo Alto Research Center Incorporated. All Rights Reserved.
 */

package figures;

import java.awt.Color;
import figures.FigureElement;

public aspect ColorControl {
    public static void setFillColor(FigureElement fe, Color color) {
	// fill in here
    }

    public static void setLineColor(FigureElement fe, Color color) {
	// fill in here
    }

    // fill in here
}