blob: ddea1348aa654b4df7ab00c6f49e68dad8df5c94 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.dom.fragments;
import org.eclipse.jdt.core.dom.Expression;
class SimpleExpressionFragment extends SimpleFragment implements IExpressionFragment {
SimpleExpressionFragment(Expression node) {
super(node);
}
public Expression getAssociatedExpression() {
return (Expression) getAssociatedNode();
}
}