Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0c6a81fd6d8bd5caf6c95426db326e4222397a88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*******************************************************************************
 * Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) 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:                                                               *        
 *     Soyatec - initial API and implementation                                *
 *******************************************************************************/
package org.eclipse.papyrus.xwt.javabean.metadata.properties;

/**
 * @author jliu
 * 
 */
public final class PropertiesConstants {

	// Properties
	public static final String PROPERTY_EDITOR = "editor";

	public static final String PROPERTY_EDITORS = "editors";

	public static final String PROPERTY_DYNAMIC = "dynamic";

	public static final String PROPERTY_CELLS = "cells";

	public static final String PROPERTY_TEXTS = "texts";

	public static final String PROPERTY_TEXT = "text";

	public static final String PROPERTY_URL = "url";

	public static final String PROPERTY_WIDTH = "width";

	public static final String PROPERTY_BINDING_PATH = "bindingPath";

	public static final String PROPERTY_ITEM_TEXT = "itemText";

	public static final String PROPERTY_ITEM_IMAGE = "itemImage";

	public static final String PROPERTY_IMAGE = "image";

	public static final String PROPERTY_COLUMNS = "columns";

	public static final String PROPERTY_COLUMN_PROPERTIES = "columnProperties";

	public static final String PROPERTY_SINGLE_SELECTION = "singleSelection";

	public static final String PROPERTY_MULTI_SELECTION = "multiSelection";

	// Data
	public static final String DATA_DEFINED_EDITOR = "Defined table editors";

	public static final String DATA_TABLE_UTIL = "tableUtil";

	public static final String DATA_CONTROLEDITOR_OF_CONTROL = "TableEditor of a control";
}

Back to the top