001/*
002 * Copyright (c) 2012-2017 Institut National des Sciences Appliquées de Lyon (INSA-Lyon)
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 */
009
010package org.eclipse.golo.compiler.ir;
011
012import java.util.List;
013
014public interface Alternatives<T extends GoloElement> {
015  Alternatives<T> when(Object cond);
016
017  Alternatives<T> then(Object action);
018
019  Alternatives<T> otherwise(Object action);
020
021  List<WhenClause<T>> getClauses();
022
023  T getOtherwise();
024}