/******************************************************************************* * Copyright (c) 2014 EclipseSource 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: * EclipseSource - initial API and implementation ******************************************************************************/ package com.eclipsesource.tabris.passepartout; /** * <p> * An {@link Instruction} is a marker interface for instructions used in a {@link Rule}. Passe-Partout comes with it's * own instruction set. Those instructions can be created using the {@link PassePartout} class. * </p> * * @see Rule * * @noimplement This interface is not intended to be implemented by clients. * * @since 0.9 */ public interface Instruction { }