blob: f45f76dd4efb3760d7bdfda311298a4b9ec3760a [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;
/**
* A {@link Vendor} provides a ware of type T on a {@link Bazaar}. To find the best {@link Vendor}, every
* {@link Vendor} can do a {@link Bid} in a method annotated with {@link Bid}. The best {@link Vendor} creates
* the ware in a method annotaed with {@link Create}.
*
* @author jonas
*
* @param <T> the type of ware create by this {@link Vendor}
*/
public interface Vendor<T> {
}