View Javadoc

1   /*
2    * ConfigElement.java
3    * Part of the yawn project
4    * Created on 04-dic-2004 by marti.
5    *
6    */
7   package yawn.config;
8   
9   import org.apache.commons.lang.builder.EqualsBuilder;
10  
11  /***
12   * This is yawn.nn.ConfigElement, part of the yawn project.
13   * 
14   * <p>$Id: ConfigElement.java,v 1.7 2005/04/20 18:55:14 supermarti Exp $</p>
15   * 
16   * @author Luis Mart&iacute; (luis dot marti at uc3m dot es)
17   * @version $Revision: 1.7 $
18   */
19  public class ConfigElement {
20  
21      /***
22       * @see java.lang.Object#equals(java.lang.Object)
23       */
24      public boolean equals(Object op) {
25          return EqualsBuilder.reflectionEquals(this, op);
26      }
27  
28  }