diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-23 10:41:24 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-23 18:14:33 +0300 |
commit | 52986fdf881260994e5465012af2afd80447b8b6 (patch) | |
tree | 59c19ffa0e31b5147c0f95974c6c6febca3f64a3 /shared | |
parent | f4f3a563942a9264fada9275991b5fd9dce73868 (diff) | |
download | vaadin-framework-52986fdf881260994e5465012af2afd80447b8b6.tar.gz vaadin-framework-52986fdf881260994e5465012af2afd80447b8b6.zip |
Changed Notification type and position to enum (#9072)
Diffstat (limited to 'shared')
-rwxr-xr-x | shared/src/com/vaadin/shared/Position.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/Position.java b/shared/src/com/vaadin/shared/Position.java new file mode 100755 index 0000000000..89d6a4261c --- /dev/null +++ b/shared/src/com/vaadin/shared/Position.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; + +public enum Position { + TOP_LEFT, TOP_CENTER, TOP_RIGHT, MIDDLE_LEFT, MIDDLE_CENTER, MIDDLE_RIGHT, BOTTOM_LEFT, BOTTOM_CENTER, BOTTOM_RIGHT; +} |