diff options
author | Roel Spilker <r.spilker@gmail.com> | 2016-11-21 22:05:32 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2016-11-21 22:05:32 +0100 |
commit | 369518c92ce4e79ce62ce334497c9309e074f44c (patch) | |
tree | 3cb84cf0975e2f66d030b027fa73505c9dd0e574 /src/core/lombok/experimental/var.java | |
parent | 192c569128d1ffb879fb104f44483e394032a790 (diff) | |
parent | bae2018180e9eaf31b8a71a1f7d06e2265452f5c (diff) | |
download | lombok-369518c92ce4e79ce62ce334497c9309e074f44c.tar.gz lombok-369518c92ce4e79ce62ce334497c9309e074f44c.tar.bz2 lombok-369518c92ce4e79ce62ce334497c9309e074f44c.zip |
Merge branch 'bulgakovalexander-feature/var'
Diffstat (limited to 'src/core/lombok/experimental/var.java')
-rw-r--r-- | src/core/lombok/experimental/var.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/core/lombok/experimental/var.java b/src/core/lombok/experimental/var.java new file mode 100644 index 00000000..d8de8b19 --- /dev/null +++ b/src/core/lombok/experimental/var.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2010-2013 The Project Lombok Authors. + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +package lombok.experimental; + +/** + * like val but not final + */ +public @interface var { +} |