Skip to content

Commit

Permalink
WBRI-117, update to packaging to PRD2
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1232 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jan 26, 2009
1 parent 0823af8 commit 26d313a
Show file tree
Hide file tree
Showing 195 changed files with 421 additions and 695 deletions.
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.annotation;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.annotation;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.annotation;

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans.manager;
package javax.context;

import java.lang.annotation.Annotation;

Expand Down
Expand Up @@ -15,7 +15,9 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import javax.inject.ExecutionException;

/**
* A ContextNotActiveException is thrown if at a particular point in the
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans.manager;
package javax.context;

/**
* The contract between a Context and an object that has its lifecycle managed
Expand Down
@@ -1,4 +1,4 @@
package javax.webbeans;
package javax.context;

public interface Conversation {
public void begin();
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.context;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.decorator;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.decorator;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand All @@ -24,6 +24,8 @@
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.annotation.Stereotype;

/**
* Specifies that a class is a Web Beans decorator.
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import java.lang.annotation.Annotation;

Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
Expand All @@ -26,6 +26,8 @@
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.inject.BindingType;

/**
* Annotates a variable to be injected with an Event object that can be fired and
* observed by observer methods
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
@@ -1,4 +1,4 @@
package javax.webbeans;
package javax.event;

/**
* The contract between the Web Bean manager and a Web Beans observer object.
Expand Down
Expand Up @@ -15,7 +15,9 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import javax.inject.ExecutionException;

/**
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.event;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

/**
* An AmbiguousDependencyException is thrown when within the set of enabled Web
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

/**
* Supports inline instantiation of annotation types.
Expand All @@ -32,6 +32,7 @@
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;


public abstract class AnnotationLiteral<T extends Annotation> implements
Annotation
{
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

/**
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

/**
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

/**
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.webbeans;
package javax.inject;

/**
* This exception is thrown whenever more than one binding type instance of the
Expand Down
Expand Up @@ -16,7 +16,7 @@
*/


package javax.webbeans;
package javax.inject;

/**
*
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.webbeans;
package javax.inject;

/**
*/
Expand Down
Expand Up @@ -16,7 +16,7 @@
*/


package javax.webbeans;
package javax.inject;

/**
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
Expand Down
Expand Up @@ -15,10 +15,11 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import java.lang.annotation.Annotation;


/**
* An interface for looking up web beans of a particular type.
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package javax.webbeans;
package javax.inject;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
Expand Down

0 comments on commit 26d313a

Please sign in to comment.