]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/ColumnKeys.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / ColumnKeys.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.browsing.ui.common;\r
13 \r
14 import org.simantics.browsing.ui.content.Labeler;\r
15 import org.simantics.utils.datastructures.ArrayMap;\r
16 \r
17 /**\r
18  * Reusable standard key objects for idenfitying columns in {@link Labeler}\r
19  * implementations.\r
20  * \r
21  * @author Tuukka Lehtonen\r
22  * \r
23  * @see Labeler#getLabels()\r
24  * @see Labeler#getRuntimeLabels()\r
25  */\r
26 public final class ColumnKeys {\r
27 \r
28     // Use these for single-column tree views\r
29 \r
30     public static final String   SINGLE              = "single";\r
31 \r
32     /**\r
33      * Use with {@link ArrayMap} in {@link Labeler} implementations.\r
34      */\r
35     public static final String[] KEYS_SINGLE         = { SINGLE };\r
36 \r
37     // Use these for tree-table style multicolumn views\r
38 \r
39     public static final String   PROPERTY            = "Property";\r
40 \r
41     public static final String   EXPRESSION               = "Expression";\r
42 \r
43     public static final String   VALUE               = "Value";\r
44 \r
45     public static final String   DISPLAY_PROPERTY            = "HasDisplayProperty";\r
46     public static final String   DISPLAY_VALUE            = "HasDisplayValue";\r
47     public static final String   DISPLAY_UNIT            = "HasDisplayUnit";\r
48 \r
49     \r
50     /**\r
51      * Use with {@link ArrayMap} in {@link Labeler} implementations.\r
52      */\r
53     public static final String[] KEYS_PROPERTY_VALUE = { PROPERTY, VALUE };\r
54     \r
55 }\r