Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.osbp.xtext.table/xtend-gen/org/eclipse/osbp/xtext/table/jvmmodel/FormatProperty.java')
-rw-r--r--org.eclipse.osbp.xtext.table/xtend-gen/org/eclipse/osbp/xtext/table/jvmmodel/FormatProperty.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/org.eclipse.osbp.xtext.table/xtend-gen/org/eclipse/osbp/xtext/table/jvmmodel/FormatProperty.java b/org.eclipse.osbp.xtext.table/xtend-gen/org/eclipse/osbp/xtext/table/jvmmodel/FormatProperty.java
new file mode 100644
index 0000000..11073ee
--- /dev/null
+++ b/org.eclipse.osbp.xtext.table/xtend-gen/org/eclipse/osbp/xtext/table/jvmmodel/FormatProperty.java
@@ -0,0 +1,47 @@
+/**
+ * Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
+ *
+ * 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:
+ * Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
+ *
+ *
+ * This copyright notice shows up in the generated Java code
+ */
+package org.eclipse.osbp.xtext.table.jvmmodel;
+
+/**
+ * <p>Container class for a Hashmap value. It carries look and feel information for table cells.</p>
+ */
+@SuppressWarnings("all")
+public class FormatProperty {
+ public String formatter = null;
+
+ public String tooltipPattern = null;
+
+ public boolean hideLabelLookup = false;
+
+ public boolean hideLabelInterval = false;
+
+ public boolean hideImageLabel = false;
+
+ public boolean collapsed = false;
+
+ public boolean hasImage = false;
+
+ public boolean hasImageParameter = false;
+
+ public String imagePathParameter = null;
+
+ public String imagePath = null;
+
+ public boolean hasImageResize = false;
+
+ public String imageResizeString = null;
+
+ public String iconName = null;
+}

Back to the top