01: /*
02: * RequiredFieldHighlighter.java
03: *
04: * This file is part of SQL Workbench/J, http://www.sql-workbench.net
05: *
06: * Copyright 2002-2008, Thomas Kellerer
07: * No part of this code maybe reused without the permission of the author
08: *
09: * To contact the author please send an email to: support@sql-workbench.net
10: *
11: */
12: package workbench.gui.renderer;
13:
14: import java.awt.Color;
15:
16: /**
17: * @author support@sql-workbench.net
18: */
19: public interface RequiredFieldHighlighter {
20: void setHighlightColumns(boolean[] cols);
21:
22: void setEditingRow(int row);
23:
24: void setHighlightBackground(Color requiredColor);
25: }
|