blob: 18702e53d1e997b1ec1f1f2327ab0ab3faf24040 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 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.jaxb.ui.internal.jaxb21;
import org.eclipse.jpt.common.ui.jface.DelegatingContentAndLabelProvider;
import org.eclipse.jpt.jaxb.core.context.JaxbPersistentProperty;
public class JaxbPersistentPropertyItemLabelProvider
extends JaxbPersistentAttributeItemLabelProvider {
public JaxbPersistentPropertyItemLabelProvider(
JaxbPersistentProperty jaxbProperty, DelegatingContentAndLabelProvider labelProvider) {
super(jaxbProperty, labelProvider);
}
@Override
public JaxbPersistentProperty getModel() {
return (JaxbPersistentProperty) super.getModel();
}
}