You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
690 B
47 lines
690 B
/*
|
|
* Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.annotation;
|
|
import java.lang.annotation.*;
|
|
import static java.lang.annotation.ElementType.*;
|
|
import static java.lang.annotation.RetentionPolicy.*;
|
|
|
|
/**
|
|
* This class is used to allow multiple resources declarations.
|
|
*
|
|
* @see javax.annotation.Resource
|
|
* @since Common Annotations 1.0
|
|
*/
|
|
|
|
@Documented
|
|
@Retention(RUNTIME)
|
|
@Target(TYPE)
|
|
public @interface Resources {
|
|
/**
|
|
* Array used for multiple resource declarations.
|
|
*/
|
|
Resource[] value();
|
|
}
|