blob: f44f33a8d8a5097cee6dc76a3097d1106ed3f0b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2018 EclipseSource Muenchen GmbH 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:
* jonas - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.bazaar.internal;
import org.eclipse.emfforms.bazaar.Create;
import org.eclipse.emfforms.bazaar.Vendor;
/**
* @author jonas
*
*/
public class MountebankCreatingWareParameter1 implements Vendor<MyWare> {
private final MyWare myWare;
/**
* @param myWare
*/
public MountebankCreatingWareParameter1(MyWare myWare) {
this.myWare = myWare;
}
@Create
public MyWare create(String string) {
return myWare;
}
}