Skip to content

Package: Vendor

Vendor

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2018 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * jonas - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emfforms.bazaar;
15:
16: /**
17: * A {@link Vendor} provides a product of type T on a {@link Bazaar}. To find the best {@link Vendor}, every
18: * {@link Vendor} can do a {@link Bid} in a method annotated with {@link Bid}. The best {@link Vendor} creates
19: * the product in a method annotaed with {@link Create}.
20: *
21: * @author jonas
22: *
23: * @param <T> the type of product create by this {@link Vendor}
24: */
25: public interface Vendor<T> {
26:
27: }