~ubuntu-branches/ubuntu/vivid/tomcat6/vivid-proposed

« back to all changes in this revision

Viewing changes to java/javax/annotation/Resources.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-02-17 00:02:00 UTC
  • mfrom: (1.2.10)
  • Revision ID: package-import@ubuntu.com-20140217000200-qs6ki7bhqnfhkas7
Tags: 6.0.39-1
* Team upload.
* New upstream release.
  - Refreshed the patches
* Standards-Version updated to 3.9.5 (no changes)
* Switch to debhelper level 9
* Use XZ compression for the upstream tarball
* Use canonical URL for the Vcs-Git field

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 * See the License for the specific language governing permissions and
15
15
 * limitations under the License.
16
16
 */
17
 
 
18
 
 
19
17
package javax.annotation;
20
18
 
21
19
import java.lang.annotation.ElementType;
23
21
import java.lang.annotation.RetentionPolicy;
24
22
import java.lang.annotation.Target;
25
23
 
 
24
/**
 
25
 * @since Common Annotations 1.0
 
26
 */
26
27
@Target({ElementType.TYPE})
27
28
@Retention(RetentionPolicy.RUNTIME)
28
 
 
29
29
public @interface Resources {
30
30
    public Resource[] value();
31
31
}