| /* | |
| * 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(); | |
| } |