View Javadoc

1    /****************************************************************************
2    * Copyright (c) 2005, 2006, 2007, 2008, 2009 Imola Informatica.
3    * All rights reserved. This program and the accompanying materials
4    * are made available under the terms of the LGPL License v2.1
5    * which accompanies this distribution, and is available at
6    * http://www.gnu.org/licenses/lgpl.html
7    ****************************************************************************/
8   package it.imolinfo.jbi4corba.webservice.generator.bcm;
9   
10  import java.util.List;
11  
12  import org.apache.commons.lang.builder.ReflectionToStringBuilder;
13  
14  /**
15   * XXX javadoc.
16   */
17  public class AnnotationVisibleAndValue {
18      public Boolean visible;
19      public List<AnnotationValue> value;
20  
21      /**
22       * 
23       * @param visible  The visible
24       * @param value    The value
25       */
26      public AnnotationVisibleAndValue(Boolean visible,
27                                       List<AnnotationValue> value) {
28          this.visible = visible;
29          this.value   = value;
30      }
31  
32      /**
33       * @return  The return
34       */
35      @Override
36      public String toString() {
37        return ReflectionToStringBuilder.toString(this);
38      }
39  }