Package net.sf.pmr.core.domain.project

Examples of net.sf.pmr.core.domain.project.ProjectProxyUtil


        if (!(object instanceof StoryImpl)) {
            return false;
        }

        // TODO : trouver mieux...
        ProjectProxyUtil basicProjectProxyUtil = new ProjectProxyUtilImpl();
       
        StoryImpl rhs = (StoryImpl) object;
        return new EqualsBuilder().append(this.shortDescription,
                rhs.shortDescription).append(basicProjectProxyUtil.getTarget(this.project),
                    basicProjectProxyUtil.getTarget(rhs.project)).isEquals();
       
       
    }
View Full Code Here


     * @see java.lang.Object#hashCode()
     */
    public int hashCode() {
     
        // TODO : trouver mieux...
        ProjectProxyUtil projectProxyUtil = new ProjectProxyUtilImpl();
     
        return new HashCodeBuilder(258479881, -53180989).append(
                this.shortDescription).append(projectProxyUtil.getTarget(this.project)).toHashCode();
    }
View Full Code Here

TOP

Related Classes of net.sf.pmr.core.domain.project.ProjectProxyUtil

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.