You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2013/01/25 11:39:22 UTC

svn commit: r1438433 - /openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java

Author: struberg
Date: Fri Jan 25 10:39:21 2013
New Revision: 1438433

URL: http://svn.apache.org/viewvc?rev=1438433&view=rev
Log:
OWB-765 make variables protected

Modified:
    openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java

Modified: openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java?rev=1438433&r1=1438432&r2=1438433&view=diff
==============================================================================
--- openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java (original)
+++ openwebbeans/trunk/webbeans-impl/src/main/java/org/apache/webbeans/component/creation/BeanAttributesBuilder.java Fri Jan 25 10:39:21 2013
@@ -65,23 +65,23 @@ import org.apache.webbeans.util.WebBeans
  */
 public abstract class BeanAttributesBuilder<T, A extends Annotated>
 {
-    A annotated;
-    
-    WebBeansContext webBeansContext;
-        
-    Set<Type> types = new HashSet<Type>();
+    protected A annotated;
 
-    Set<Annotation> qualifiers = new HashSet<Annotation>();
-    
-    Class<? extends Annotation> scope;
-    
-    String name;
-    
-    boolean nullable;
-    
-    Set<Class<? extends Annotation>> stereotypes = new HashSet<Class<? extends Annotation>>();
-    
-    boolean alternative;
+    protected WebBeansContext webBeansContext;
+
+    protected Set<Type> types = new HashSet<Type>();
+
+    protected Set<Annotation> qualifiers = new HashSet<Annotation>();
+
+    protected Class<? extends Annotation> scope;
+
+    protected String name;
+
+    protected boolean nullable;
+
+    protected Set<Class<? extends Annotation>> stereotypes = new HashSet<Class<? extends Annotation>>();
+
+    protected boolean alternative;
     
     public static BeanAttributesBuilderFactory forContext(WebBeansContext webBeansContext)
     {