blob: 7615cbbbf7627cdb6126317f8ed414f4dcb895bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 BEA Systems, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* tyeung@bea.com - initial API and implementation
* IBM Corporation - implemented methods from IBinding
* IBM Corporation - renamed from ResolvedDefaultValuePair to DefaultValuePairBinding
*******************************************************************************/
package org.eclipse.wst.jsdt.core.dom;
/**
* Member value pair which compose of default values.
*
* Provisional API: This class/interface is part of an interim API that is still under development and expected to
* change significantly before reaching stability. It is being made available at this early stage to solicit feedback
* from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken
* (repeatedly) as the API evolves.
*/
class DefaultValuePairBinding extends MemberValuePairBinding {
private org.eclipse.wst.jsdt.internal.compiler.lookup.MethodBinding method;
DefaultValuePairBinding(org.eclipse.wst.jsdt.internal.compiler.lookup.MethodBinding binding, BindingResolver resolver) {
super(null, resolver);
this.method = binding;
this.value = MemberValuePairBinding.buildDOMValue(binding.getDefaultValue(), resolver);
}
public IFunctionBinding getMethodBinding() {
return this.bindingResolver.getMethodBinding(this.method);
}
public String getName() {
return new String(this.method.selector);
}
public Object getValue() {
return this.value;
}
public boolean isDefault() {
return true;
}
public boolean isDeprecated() {
return this.method.isDeprecated();
}
}