package org.eclipse.emf.test.ecore.xcore.legacy_xpect_runner; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * use org.xpect.parameter.ParameterParser from www.xpect-tests.org instead. * * This class will be removed in the next release after 2.4.2 * * @author Moritz Eysholdt - Initial contribution and API */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ParameterSyntax { String value() default ""; }