OSDN Git Service

git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/filelock/trunk@17 c6214a2a-ec3a...
[filelock/repo.git] / filelock / src / main / lib / launch4j-2.1.5-win32 / src / net / sf / launch4j / binding / Binding.java
1 /*
2         Launch4j (http://launch4j.sourceforge.net/)
3         Cross-platform Java application wrapper for creating Windows native executables.
4
5         Copyright (C) 2004, 2006 Grzegorz Kowal
6
7         This program is free software; you can redistribute it and/or modify
8         it under the terms of the GNU General Public License as published by
9         the Free Software Foundation; either version 2 of the License, or
10         (at your option) any later version.
11
12         This program is distributed in the hope that it will be useful,
13         but WITHOUT ANY WARRANTY; without even the implied warranty of
14         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15         GNU General Public License for more details.
16
17         You should have received a copy of the GNU General Public License
18         along with this program; if not, write to the Free Software
19         Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 */
21
22 /*
23  * Created on Apr 30, 2005
24  */
25 package net.sf.launch4j.binding;
26
27 import java.awt.Color;
28
29 /**
30  * @author Copyright (C) 2005 Grzegorz Kowal
31  */
32 public interface Binding {
33         /** Used to mark components with invalid data. */
34         public final static Color INVALID_COLOR = Color.PINK;
35
36         /** Java Bean property bound to a component */
37         public String getProperty();
38         /** Clear component, set it to the default value */ 
39         public void clear(IValidatable bean);
40         /** Java Bean property -> Component */
41         public void put(IValidatable bean);
42         /** Component -> Java Bean property */
43         public void get(IValidatable bean);
44         /** Mark component as valid */
45         public void markValid();
46         /** Mark component as invalid */
47         public void markInvalid();
48         /** Enable or disable the component */
49         public void setEnabled(boolean enabled);
50 }