blob: e2b2df4229a0246d8a364ede5ad81d2c43ba5e6b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle.
* 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:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.ui.internal.structure;
import org.eclipse.jpt.core.internal.IResourceModel;
public abstract class ResourceModelStructureProvider
implements IJpaStructureProvider
{
protected IResourceModel resourceModel;
public ResourceModelStructureProvider(IResourceModel resourceModel) {
this.resourceModel = resourceModel;
}
public Object getInput() {
return resourceModel;
}
public void dispose() {
// TODO Auto-generated method stub
}
}