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
| package ar.edu.untref; | |
| public class CasaYTerreno { // 1 = obstaculo. 0 = libre | |
| private int[][] matrizCasa = { { 0,0,0,0 }, | |
| { 0,0,0,0 }, | |
| { 0,1,1,0 }, | |
| { 1,1,1,1 } }; | |
| private boolean casaDentroDeTerreno = false; | |
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
| package ar.edu.untref.lp1.plomeria.grupoN; | |
| import ar.edu.untref.lp1.plomeria.Material; | |
| import ar.edu.untref.lp1.plomeria.Plomero; | |
| /** | |
| * Ejemplo de implemetación de la interfaz Plomero. | |
| */ | |
| public class MarioBros implements Plomero { |
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
| package ar.edu.unlam.tallerweb.eclipse; | |
| public class Rango { | |
| private int minimo; | |
| private int maximo; | |
| public Rango(int minimo, int maximo){ | |
| this.minimo = minimo; | |
| this.maximo = maximo; |
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
| package ar.edu.untref.lp1.terreno; | |
| public class Casa { | |
| private boolean[][] plano; | |
| private int orientacion; | |
| public Casa(boolean[][] plano, int orientacion) { | |
| this.plano = plano; |
NewerOlder