Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9a16e1a2372356dfd6a9ed10781f2ed546386290 (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
/*******************************************************************************
 * Copyright (c) 2001, 2006 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsdl.ui.internal.wizards;  
        
import org.eclipse.swt.widgets.Composite;
import org.eclipse.wst.wsdl.internal.generator.BaseGenerator;

public interface ContentGeneratorOptionsPage
{                                          
  public void init(BaseGenerator baseGenerator);             
  public Composite createControl(Composite parent);
  public Composite getControl();
  
  // TODO can this go into init?
  //
  public void setOptionsOnGenerator();
  public boolean isOverwriteApplicable();
}

Back to the top