From 00c375b2901e1a102c2209c6f48b89541fdad4f3 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Fri, 11 Oct 2013 11:45:43 +0400 Subject: [PATCH] Add missing annotation classes --- runtime/src/jet/data.java | 24 ++++++++++++++++++++++++ runtime/src/jet/deprecated.java | 25 +++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 runtime/src/jet/data.java create mode 100644 runtime/src/jet/deprecated.java diff --git a/runtime/src/jet/data.java b/runtime/src/jet/data.java new file mode 100644 index 00000000000..4f698f28fc0 --- /dev/null +++ b/runtime/src/jet/data.java @@ -0,0 +1,24 @@ +/* + * Copyright 2010-2013 JetBrains s.r.o. + * + * 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 jet; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +@Retention(RetentionPolicy.CLASS) +public @interface data { +} diff --git a/runtime/src/jet/deprecated.java b/runtime/src/jet/deprecated.java new file mode 100644 index 00000000000..2a8e1239edb --- /dev/null +++ b/runtime/src/jet/deprecated.java @@ -0,0 +1,25 @@ +/* + * Copyright 2010-2013 JetBrains s.r.o. + * + * 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 jet; + +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; + +@Retention(RetentionPolicy.CLASS) +public @interface deprecated { + String value(); +}