Author: khmarbaise
Date: Sun Dec 28 13:29:49 2014
New Revision: 1648197

URL: http://svn.apache.org/r1648197
Log:
Fixed checkstyle reported stuff.

Modified:
    
maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EjbRef.java

Modified: 
maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EjbRef.java
URL: 
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EjbRef.java?rev=1648197&r1=1648196&r2=1648197&view=diff
==============================================================================
--- 
maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EjbRef.java
 (original)
+++ 
maven/plugins/trunk/maven-ear-plugin/src/main/java/org/apache/maven/plugin/ear/EjbRef.java
 Sun Dec 28 13:29:49 2014
@@ -48,6 +48,12 @@ public class EjbRef
 
     private String lookupName;
 
+    /**
+     * @param description The ejb-ref description.
+     * @param name The ejb-ref-name.
+     * @param type The ejb-ref-type
+     * @param lookupName The lookupname.
+     */
     public EjbRef( String description, String name, String type, String 
lookupName )
     {
         if ( StringUtils.isEmpty( name ) )
@@ -110,36 +116,57 @@ public class EjbRef
         writer.endElement();
     }
 
+    /**
+     * @return {@link #name}
+     */
     public String getName()
     {
         return name;
     }
 
+    /**
+     * @param name {@link #name}
+     */
     public void setName( String name )
     {
         this.name = name;
     }
 
+    /**
+     * @return {@link #type}
+     */
     public String getType()
     {
         return type;
     }
 
+    /**
+     * @param type {@link #type}
+     */
     public void setType( String type )
     {
         this.type = type;
     }
 
+    /**
+     * @return {@link #lookupName}
+     */
     public String getLookupName()
     {
         return lookupName;
     }
 
+    /**
+     * @param lookupName {@link #lookupName}
+     */
     public void setLookupName( String lookupName )
     {
         this.lookupName = lookupName;
     }
 
+    /**
+     * @return {@link #description}
+     */
     public String getDescription()
     {
         return description;


Reply via email to