Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5a897177b93522a350ca6d510d3c249ccceaefbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/******************************************************************************
 * Copyright (c) 2005, 2007 BEA Systems, Inc.
 * 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:
 *    Konstantin Komissarchik
 ******************************************************************************/

package org.eclipse.jst.j2ee.ui.archive;

import org.eclipse.swt.widgets.Composite;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;

/**
 * Used in conjunction with the <code>org.eclipse.jst.j2ee.ui.archiveExportParticipantPanels</code>
 * extension point in order to extend the UI of the base module archive export wizard.
 * 
 * @since 3.0
 * @author <a href="mailto:kosta@bea.com">Konstantin Komissarchik</a>
 */

public interface IArchiveExportParticipantPanelFactory
{
    /**
     * Creates a composite containing the UI elements appropriate for the export participant
     * that this panel factory is registered with.
     * 
     * @param parent the parent composite
     * @param dataModel the data model of the export participant
     * @return the created composite
     */
    
    Composite createPanel( Composite parent,
                           IDataModel dataModel );
}

Back to the top