blob: dff170cb8f09ec8ecf4c43127c6952d71859cc27 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.jpa.ui.internal.details.db;
import org.eclipse.jpt.common.ui.internal.widgets.Pane;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.jpa.core.JpaNode;
import org.eclipse.swt.widgets.Composite;
/**
* This combo-box displays the database's catalogs.
*/
public abstract class CatalogCombo<T extends JpaNode>
extends DatabaseObjectCombo<T>
{
public CatalogCombo(
Pane<? extends T> parentPane,
Composite parent) {
super(parentPane, parent);
}
public CatalogCombo(
Pane<?> parentPane,
PropertyValueModel<? extends T> subjectHolder,
Composite parent) {
super(parentPane, subjectHolder, parent);
}
@Override
protected Iterable<String> getValues_() {
return this.getDatabase().getSortedCatalogIdentifiers();
}
}