summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-22 08:53:23 +0300
committerArtur Signell <artur@vaadin.com>2012-08-22 14:01:49 +0300
commit88776600733901f3f9891aa90a11a5aeb2b97ef4 (patch)
treea20323b7af46d1dbd860a21a5e92b16d18c6c100 /shared
parent667ef9c144bf3522100e5c8eac4d76a3c4faf65b (diff)
downloadvaadin-framework-88776600733901f3f9891aa90a11a5aeb2b97ef4.tar.gz
vaadin-framework-88776600733901f3f9891aa90a11a5aeb2b97ef4.zip
Changed border style to enum (#9072)
Diffstat (limited to 'shared')
-rwxr-xr-xshared/src/com/vaadin/shared/ui/BorderStyle.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/BorderStyle.java b/shared/src/com/vaadin/shared/ui/BorderStyle.java
new file mode 100755
index 0000000000..786d340f1c
--- /dev/null
+++ b/shared/src/com/vaadin/shared/ui/BorderStyle.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2011 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.shared.ui;
+
+public enum BorderStyle {
+ NONE, MINIMAL, DEFAULT;
+}