1
2
3
4
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í (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 }