1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /*
| * Created on Dec 11, 2007
| */
| package com.codecommit.wicket;
|
| import java.awt.Color;
|
| /**
| * @author Daniel Spiewak
| */
| public interface IFillArea {
|
| public AreaFillType getType();
|
| public Color getColor();
|
| public int getStartIndex();
|
| // unnecessary if BOTTOM
| public int getEndIndex();
| }
|
|