[webbeans-commits] Webbeans SVN: r100 - ri/trunk/webbeans-api/src/main/java/javax/webbeans.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Wed Sep 10 14:25:12 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-09-10 14:25:12 -0400 (Wed, 10 Sep 2008)
New Revision: 100

Added:
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/Observable.java
Log:
Add Observable annotation (thanks to David Allen)

Added: ri/trunk/webbeans-api/src/main/java/javax/webbeans/Observable.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/Observable.java	                        (rev 0)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/Observable.java	2008-09-10 18:25:12 UTC (rev 100)
@@ -0,0 +1,41 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2008, Red Hat Middleware LLC, and individual contributors
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* 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 javax.webbeans;
+
+import static java.lang.annotation.ElementType.FIELD;
+import static java.lang.annotation.ElementType.PARAMETER;
+import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.Retention;
+import java.lang.annotation.Target;
+
+/**
+ * Annotates a variable to be injected with an Event object that can be fired and 
+ * observed by observer methods.
+ * 
+ * @author David Allen
+ */
+
+ at Target( { FIELD, LOCAL_VARIABLE, PARAMETER })
+ at Retention(RUNTIME)
+ at Documented
+public @interface Observable
+{
+
+}


Property changes on: ri/trunk/webbeans-api/src/main/java/javax/webbeans/Observable.java
___________________________________________________________________
Name: svn:mime-type
   + text/plain




More information about the weld-commits mailing list