/* * Copyright (c) 2005, 2010 Borland Software Corporation 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: * Artem Tikhomirov (Borland) - initial API and implementation */ package org.eclipse.gmf.tests; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marker interface to denote objects to be used as test initialization * @author artem */ public interface TestConfiguration { /** * Optionally provided factory method to instantiate TestConfiguration. * If none provided, preconfigured instances of TestConfiguration should be supplied to {@link Configurator}. * @author artem */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @interface FactoryMethod { } }