blob: 1f0f99f1333fb6eb295681e55f0174051be43a79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.modules.platform.uibuilder;
public class Reference {
private final Object fDelegate;
public Reference(Object delegate) {
fDelegate = delegate;
}
public Object getDelegate() {
return fDelegate;
}
@Override
public String toString() {
return "@" + fDelegate.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = (prime * result) + ((fDelegate == null) ? 0 : fDelegate.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final Reference other = (Reference) obj;
if (fDelegate == null) {
if (other.fDelegate != null)
return false;
} else if (!fDelegate.equals(other.fDelegate))
return false;
return true;
}
}