All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.ioc.xml.Id Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.jpattern.ioc.xml;
/**
 * 
 * @author Claudio Quaresima - [email protected] - 23/ott/08 17:53:10
 * @version $Id: $
 */
public class Id  {

    public Id(String aId) {
     
        id = aId;
    }
    
    private String id;

    public int hashCode() {
        return id.hashCode();
    }

    public boolean equals(Object obj) {
        final Id other = (Id) obj;
        return id.equals(other.id);
    }

    public String id() {
        return id;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy