blob: 1787828742740ca56f6080cd7eb979ea723f0148 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.platform.generic;
import org.eclipse.jpt.core.context.PersistentAttribute;
import org.eclipse.jpt.ui.internal.jface.AbstractTreeItemContentProvider;
import org.eclipse.jpt.ui.internal.jface.DelegatingTreeContentAndLabelProvider;
@SuppressWarnings("unchecked")
public class PersistentAttributeItemContentProvider extends AbstractTreeItemContentProvider
{
public PersistentAttributeItemContentProvider(
PersistentAttribute persistentAttribute, DelegatingTreeContentAndLabelProvider contentProvider) {
super(persistentAttribute, contentProvider);
}
@Override
public Object getParent() {
return ((PersistentAttribute) model()).getParent();
}
@Override
public boolean hasChildren() {
return false;
}
}