ValorOPSetado.java 464 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
package circusRefine.util;

/**
* Um valor : verdadeiro, falso ou nao-identificado, dado pelo
* usuario a uma OP.
* @author Alessandro
*
*/
public class ValorOPSetado {
private OPTipos tipo;
private int indiceOP;
public ValorOPSetado(OPTipos tipo, int indiceOP) {
super();
this.tipo = tipo;
this.indiceOP = indiceOP;
}
public OPTipos getTipo() {
return tipo;
}
public int getIndiceOP() {
return indiceOP;
}
}