diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-22 08:53:23 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-22 14:01:49 +0300 |
commit | 88776600733901f3f9891aa90a11a5aeb2b97ef4 (patch) | |
tree | a20323b7af46d1dbd860a21a5e92b16d18c6c100 /shared | |
parent | 667ef9c144bf3522100e5c8eac4d76a3c4faf65b (diff) | |
download | vaadin-framework-88776600733901f3f9891aa90a11a5aeb2b97ef4.tar.gz vaadin-framework-88776600733901f3f9891aa90a11a5aeb2b97ef4.zip |
Changed border style to enum (#9072)
Diffstat (limited to 'shared')
-rwxr-xr-x | shared/src/com/vaadin/shared/ui/BorderStyle.java | 20 |
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; +} |