Blame view

src/noyau/Case.java 181 Bytes
d8507aee   [mandjemb]   Fichiers
1
2
3
4
5
6
7
8
9
10
11
12
13
  package noyau;
  
  import java.util.*;
  
  public class Case {
  	
  	String colonne;
  	int ligne;
  	double valeur;
  	ArrayList<Case> utiliseDans = new ArrayList<Case>();
  	boolean isFormule;
  
  }