blob: a4479dfef094df34768432723fec5b4ec9656ce1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 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;
import java.util.Iterator;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jpt.core.JpaFile;
import org.eclipse.jpt.core.JpaProject;
import org.eclipse.jpt.core.JpaStructureNode;
import org.eclipse.jpt.core.context.AttributeMapping;
import org.eclipse.jpt.core.context.PersistentAttribute;
import org.eclipse.jpt.core.context.PersistentType;
import org.eclipse.jpt.core.context.TypeMapping;
import org.eclipse.jpt.ui.details.AttributeMappingUiProvider;
import org.eclipse.jpt.ui.details.DefaultAttributeMappingUiProvider;
import org.eclipse.jpt.ui.details.JpaDetailsPage;
import org.eclipse.jpt.ui.details.TypeMappingUiProvider;
import org.eclipse.jpt.ui.navigator.JpaNavigatorProvider;
import org.eclipse.jpt.ui.structure.JpaStructureProvider;
import org.eclipse.swt.widgets.Composite;
/**
* This interface is to be implemented by a JPA vendor to provide extensions to
* JPA UI functionality. This is intended to work in conjunction with a core
* JPA platform ({@link JpaPlatform}) implementation with the same ID.
* <p>
* Any implementation should be <i>stateless</i> in nature.
* <p>
* The "generic" extension supplies UI for the core platform extension with the same
* ID.
*
* See the extension point: org.eclipse.jpt.ui.jpaPlatform
*
* Provisional API: This interface is part of an interim API that is still
* under development and expected to change significantly before reaching
* stability. It is available at this early stage to solicit feedback from
* pioneering adopters on the understanding that any code that uses this API
* will almost certainly be broken (repeatedly) as the API evolves.
*/
public interface JpaPlatformUi
{
// ********** factory **********
JpaUiFactory getJpaUiFactory();
// ********** details providers **********
JpaDetailsPage<? extends JpaStructureNode> buildJpaDetailsPage(
Composite parent,
JpaStructureNode structureNode,
WidgetFactory widgetFactory);
/**
* Return an iterator of mapping ui providers appropriate for the given persistent type
*/
Iterator<TypeMappingUiProvider<? extends TypeMapping>> typeMappingUiProviders(PersistentType type);
/**
* Return an iterator of mapping ui providers appropriate for the given persistent attribute
*/
Iterator<AttributeMappingUiProvider<? extends AttributeMapping>> attributeMappingUiProviders(PersistentAttribute attribute);
// ********** Java type mapping UI providers **********
Iterator<TypeMappingUiProvider<? extends TypeMapping>> javaTypeMappingUiProviders();
// ********** Java attribute mapping UI providers **********
Iterator<AttributeMappingUiProvider<? extends AttributeMapping>> javaAttributeMappingUiProviders();
// ********** default Java attribute mapping UI providers **********
Iterator<DefaultAttributeMappingUiProvider<? extends AttributeMapping>> defaultJavaAttributeMappingUiProviders();
// ********** ORM type mapping UI providers **********
Iterator<TypeMappingUiProvider<? extends TypeMapping>> ormTypeMappingUiProviders();
// ********** ORM attribute mapping UI providers **********
Iterator<AttributeMappingUiProvider<? extends AttributeMapping>> ormAttributeMappingUiProviders();
// ********** default ORM attribute mapping UI providers **********
Iterator<DefaultAttributeMappingUiProvider<? extends AttributeMapping>> defaultOrmAttributeMappingUiProviders();
// ********** structure providers **********
/**
* Return a structure provider for the specified JPA file.
*/
JpaStructureProvider getStructureProvider(JpaFile jpaFile);
// ********** navigator provider **********
/**
* Return a *new* {@link JpaNavigatorProvider}, which determines
* Project Explorer content and look
*/
JpaNavigatorProvider buildNavigatorProvider();
// ********** entity generation **********
void generateEntities(JpaProject project, IStructuredSelection selection);
// ********** DDL generation **********
void generateDDL(JpaProject project, IStructuredSelection selection);
}