Coverage Report - org.apache.maven.tools.plugin.annotations.datamodel.ComponentAnnotationContent
 
Classes in this File Line Coverage Branch Coverage Complexity
ComponentAnnotationContent
66 %
14/21
0 %
0/2
1,111
 
 1  
 package org.apache.maven.tools.plugin.annotations.datamodel;
 2  
 
 3  
 /*
 4  
  * Licensed to the Apache Software Foundation (ASF) under one
 5  
  * or more contributor license agreements.  See the NOTICE file
 6  
  * distributed with this work for additional information
 7  
  * regarding copyright ownership.  The ASF licenses this file
 8  
  * to you under the Apache License, Version 2.0 (the
 9  
  * "License"); you may not use this file except in compliance
 10  
  * with the License.  You may obtain a copy of the License at
 11  
  *
 12  
  *   http://www.apache.org/licenses/LICENSE-2.0
 13  
  *
 14  
  * Unless required by applicable law or agreed to in writing,
 15  
  * software distributed under the License is distributed on an
 16  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17  
  * KIND, either express or implied.  See the License for the
 18  
  * specific language governing permissions and limitations
 19  
  * under the License.
 20  
  */
 21  
 
 22  
 import org.apache.maven.plugins.annotations.Component;
 23  
 
 24  
 import java.lang.annotation.Annotation;
 25  
 
 26  
 /**
 27  
  * @author Olivier Lamy
 28  
  * @since 3.0
 29  
  */
 30  
 public class ComponentAnnotationContent
 31  
     extends AnnotatedField
 32  
     implements Component
 33  
 {
 34  
     private String roleClassName;
 35  
 
 36  
     private String hint;
 37  
 
 38  
     public ComponentAnnotationContent( String fieldName )
 39  
     {
 40  2
         super( fieldName );
 41  2
     }
 42  
 
 43  
     public ComponentAnnotationContent( String fieldName, String role, String hint )
 44  
     {
 45  0
         this( fieldName );
 46  0
         this.roleClassName = role;
 47  0
         this.hint = hint;
 48  0
     }
 49  
 
 50  
     public Class<?> role()
 51  
     {
 52  
         // not used
 53  0
         return null;
 54  
     }
 55  
 
 56  
     public void setRoleClassName( String roleClassName )
 57  
     {
 58  2
         this.roleClassName = roleClassName;
 59  2
     }
 60  
 
 61  
     public String getRoleClassName()
 62  
     {
 63  2
         return roleClassName;
 64  
     }
 65  
 
 66  
     public String hint()
 67  
     {
 68  0
         return hint == null ? "" : hint;
 69  
     }
 70  
 
 71  
     public void hint( String hint )
 72  
     {
 73  1
         this.hint = hint;
 74  1
     }
 75  
 
 76  
     public Class<? extends Annotation> annotationType()
 77  
     {
 78  0
         return null;
 79  
     }
 80  
 
 81  
     @Override
 82  
     public String toString()
 83  
     {
 84  4
         final StringBuilder sb = new StringBuilder();
 85  4
         sb.append( super.toString() );
 86  4
         sb.append( "ComponentAnnotationContent" );
 87  4
         sb.append( "{role='" ).append( roleClassName ).append( '\'' );
 88  4
         sb.append( ", hint='" ).append( hint ).append( '\'' );
 89  4
         sb.append( '}' );
 90  4
         return sb.toString();
 91  
     }
 92  
 }