blob: dfd8584bf5128e750e2b33133f188ee84894378f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Mia-Software 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Sebastien Minguet (Mia-Software) - initial API and implementation
* Frederic Madiot (Mia-Software) - initial API and implementation
* Fabien Giquel (Mia-Software) - initial API and implementation
* Gabriel Barbier (Mia-Software) - initial API and implementation
* Erwan Breton (Sodifrance) - initial API and implementation
* Romain Dervaux (Mia-Software) - initial API and implementation
*******************************************************************************/
package org.eclipse.modisco.java.discoverer.internal.io.java.binding;
/**
* <code>Binding</code> representing a featured Java entity.
*
*/
public abstract class FeatureBinding extends Binding {
private ClassBinding declaringClass = null;
/**
* @return Returns the declaringClass.
*/
public ClassBinding getDeclaringClass() {
return this.declaringClass;
}
/**
* @param declaringClass
* The declaringClass to set.
*/
public void setDeclaringClass(final ClassBinding declaringClass) {
this.declaringClass = declaringClass;
}
@Override
public String toString() {
StringBuilder result = new StringBuilder();
if (getDeclaringClass() != null) {
result.append(getDeclaringClass().toString());
result.append("."); //$NON-NLS-1$
}
result.append(getName());
return result.toString();
}
}