Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 093e2a601dd7f45bb158d79b155990474ab44dce (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
/*****************************************************************************
 * Copyright (c) 2011 CEA LIST.
 *    
 * 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:
 *  Ernest Wozniak (CEA LIST) ernest.wozniak@cea.fr - Initial API and implementation
 *****************************************************************************/
package org.eclipse.papyrus.dsml.validation.generation.wizard.interfaces;

import org.eclipse.core.resources.IProject;
import org.eclipse.papyrus.dsml.validation.model.elements.interfaces.IConstraintsManager;
import org.eclipse.pde.internal.ui.wizards.plugin.NewPluginProjectWizard;

public interface IValidationPluginGenerator {

	final static String PLUGIN_NATURE_ID = "org.eclipse.pde.PluginNature";

	public void generate(IProject project, NewPluginProjectWizard wizard, IConstraintsManager constraintsManager);

}

Back to the top