/******************************************************************************* * Copyright (c) 2007, Angelo Zerr and others * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Angelo Zerr <angelo.zerr@gmail.com> - Initial API and implementation *******************************************************************************/ package org.eclipse.ufacekit.ui.swing.databinding.internal.swing; /** * Swing properties constants. * * @since 1.0 */ public class SwingProperties { /** * Enabled property */ public static final String ENABLED = "enabled"; //$NON-NLS-1$ /** * Visible property */ public static final String VISIBLE = "visible"; //$NON-NLS-1$ /** * Tooltip property */ public static final String TOOLTIP_TEXT = "tooltip"; //$NON-NLS-1$ /** * Items property */ public static final String ITEMS = "items"; //$NON-NLS-1$ /** * Max property */ public static final String MAX = "max"; //$NON-NLS-1$ /** * Min property */ public static final String MIN = "min"; //$NON-NLS-1$ /** * Selection property */ public static final String SELECTION = "selection"; //$NON-NLS-1$ /** * Index property */ public static final String SELECTION_INDEX = "index"; //$NON-NLS-1$ /** * Text property */ public static final String TEXT = "text"; //$NON-NLS-1$ /** * Image property */ public static final String IMAGE = "image"; //$NON-NLS-1$ /** * Foreground property */ public static final String FOREGROUND = "foreground"; //$NON-NLS-1$ /** * Background property */ public static final String BACKGROUND = "background"; //$NON-NLS-1$ /** * Font property */ public static final String FONT = "font"; //$NON-NLS-1$ }