KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jface > internal > databinding > provisional > swt > SWTProperties


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jface.internal.databinding.provisional.swt;
12
13 /**
14  * Constants used to describe properties of SWT controls.
15  *
16  * @since 1.0
17  *
18  */

19 public interface SWTProperties {
20
21     /**
22      * Applies to Control
23      */

24     public static final String JavaDoc ENABLED = "enabled"; //$NON-NLS-1$
25
/**
26      * Applies to Control
27      */

28     public static final String JavaDoc VISIBLE = "visible"; //$NON-NLS-1$
29
/**
30      * Applies to
31      */

32     public static final String JavaDoc ITEMS = "items"; //$NON-NLS-1$
33
/**
34      * Applies to Spinner
35      */

36     public static final String JavaDoc MAX = "max"; //$NON-NLS-1$
37
/**
38      * Applies to Spinner
39      */

40     public static final String JavaDoc MIN = "min"; //$NON-NLS-1$
41
/**
42      * Applies to Spinner, Button
43      */

44     public static final String JavaDoc SELECTION = "selection"; //$NON-NLS-1$
45
/**
46      * Applies to Spinner, Button
47      */

48     public static final String JavaDoc SELECTION_INDEX = "index"; //$NON-NLS-1$
49
/**
50      * Applies to Text, Label, Combo
51      */

52     public static final String JavaDoc TEXT = "text"; //$NON-NLS-1$
53

54 }
55
Popular Tags