This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public List<int[]> getCelulasMarcadas(){ | |
| List<int[]> celulasMarcadas = new ArrayList<int[]>(); | |
| for(int[] celula : tabuleiro){ | |
| if( celula[POSICAO_STATUS] == MARCADA){ | |
| celulas.add(celula); | |
| } | |
| } | |
| return celulasMarcadas; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public List<int[]> getTodos(){ | |
| List<int[]> lista = new ArrayList<int[]>(); | |
| for(int[] x : mLista){ | |
| if(x[0]==4){ | |
| lista.add(x); | |
| } | |
| } | |
| return lista; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?import javafx.geometry.*?> | |
| <?import javafx.scene.control.*?> | |
| <?import java.lang.*?> | |
| <?import javafx.scene.layout.*?> | |
| <VBox alignment="CENTER" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"> | |
| <children> |
NewerOlder