![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.emf.mwe.utils.ProjectMapping Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2013 itemis AG (http://www.itemis.eu) and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.emf.mwe.utils;
import org.eclipse.emf.mwe2.runtime.Mandatory;
/**
* @author Holger Schill - Initial contribution and API
*/
public class ProjectMapping {
private String projectName;
private String path;
public String getProjectName() {
return projectName;
}
@Mandatory
public void setProjectName(final String projectName) {
this.projectName = projectName;
}
public String getPath() {
return path;
}
@Mandatory
public void setPath(final String path) {
this.path = path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy