/* Copyright (c) 2017 Christopher Cromer * Copyright (c) 2017 Carlos Faúndez * * This file is part of mt. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution. * This file may not be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. */ package cl.cromer.mt; import java.util.ArrayList; public class EstadosFinales { private ArrayList estadosExistents; private ArrayList estadosElegidos; private Maquina maquina; public EstadosFinales(Maquina maquina) { this.maquina = maquina; this.estadosExistents = maquina.getMaquina().getEstados_existentes(); } public ArrayList getEstadosExistents() { return estadosExistents; } public void setEstadosExistents(ArrayList estadosExistents) { this.estadosExistents = estadosExistents; } public ArrayList getEstadosElegidos() { return estadosElegidos; } public void setEstadosElegidos(ArrayList estadosElegidos) { this.estadosElegidos = estadosElegidos; } public Maquina getMaquina() { return maquina; } public void setMaquina(Maquina maquina) { this.maquina = maquina; } }