Revision 281 org.gvsig.tools/library/trunk/org.gvsig.tools/org.gvsig.tools.swing/org.gvsig.tools.swing.impl/src/main/java/org/gvsig/tools/swing/impl/dynobject/AbstractDynObjectModelElement.java

View differences:

AbstractDynObjectModelElement.java
38 38
import org.gvsig.tools.swing.api.dynobject.DynFieldModel;
39 39

  
40 40
/**
41
 * @author <a href="mailto:reinhold@uji.es">cmartin</a>
42 41
 * 
42
 * Abstract DynObjectModel element.
43
 * 
44
 * @author 2010 - <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG Team
45
 * @author 2010 - <a href="mailto:reinhold@uji.es">Cristian Mart?n&nbsp;</a>  - gvSIG Team
46
 * @version $Id$
47
 *
43 48
 */
44 49
public abstract class AbstractDynObjectModelElement implements
45 50
    DynFieldModel {
......
50 55
    private boolean isReadOnly;
51 56
    private String group;
52 57

  
58
    /**
59
     * Constructor.
60
     * 
61
     * @param fieldName
62
     *      the current field name.
63
     * @param theClass
64
     *      the current DynClass.
65
     * @param group
66
     *      the current group name.
67
     */
53 68
    public AbstractDynObjectModelElement(String fieldName, DynClass theClass,
54 69
        String group) {
55 70
        this.theClass = theClass;
......
58 73
        this.group = group;
59 74
    }
60 75

  
76
    /**
77
     * Compares an element to the current DynObjectModel and determines
78
     *   if it is equal or not.
79
     *   
80
     */
61 81
    public boolean equals(Object elem) {
62 82
        if (!(elem instanceof DynFieldModel))
63 83
            return false;

Also available in: Unified diff