rt/core/src/main/java/org/apidesign/bck2brwsr/core/Exported.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 09 Jun 2014 19:32:49 +0200
changeset 1625 009f4bf8cd5b
child 1787 ea12a3bb4b33
permissions -rw-r--r--
[maven-release-plugin] copy for tag release-0.9
lubomir@967
     1
/**
lubomir@967
     2
 * Back 2 Browser Bytecode Translator
lubomir@967
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
lubomir@967
     4
 *
lubomir@967
     5
 * This program is free software: you can redistribute it and/or modify
lubomir@967
     6
 * it under the terms of the GNU General Public License as published by
lubomir@967
     7
 * the Free Software Foundation, version 2 of the License.
lubomir@967
     8
 *
lubomir@967
     9
 * This program is distributed in the hope that it will be useful,
lubomir@967
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
lubomir@967
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
lubomir@967
    12
 * GNU General Public License for more details.
lubomir@967
    13
 *
lubomir@967
    14
 * You should have received a copy of the GNU General Public License
lubomir@967
    15
 * along with this program. Look for COPYING file in the top folder.
lubomir@967
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
lubomir@967
    17
 */
lubomir@967
    18
package org.apidesign.bck2brwsr.core;
lubomir@967
    19
lubomir@967
    20
import java.lang.annotation.ElementType;
lubomir@967
    21
import java.lang.annotation.Retention;
lubomir@967
    22
import java.lang.annotation.RetentionPolicy;
lubomir@967
    23
import java.lang.annotation.Target;
lubomir@967
    24
lubomir@967
    25
/**
lubomir@967
    26
 * Marks the corresponding program element as exported. Exported elements are
lubomir@967
    27
 * visible from other modules. Can be used on packages, classes, methods,
lubomir@967
    28
 * constructors and fields.
lubomir@967
    29
 *
lubomir@967
    30
 * @since 0.6
lubomir@967
    31
 */
lubomir@967
    32
@Retention(RetentionPolicy.CLASS)
lubomir@967
    33
@Target({ ElementType.PACKAGE, ElementType.TYPE,
lubomir@967
    34
          ElementType.METHOD, ElementType.CONSTRUCTOR,
lubomir@967
    35
          ElementType.FIELD })
lubomir@967
    36
public @interface Exported {
lubomir@967
    37
lubomir@967
    38
}