Main Page | Packages | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

Objeto.java

Go to the documentation of this file.
00001 package plp.orientadaObjetos1.memoria;
00002 
00003 import plp.orientadaObjetos1.expressao.leftExpression.Id;
00008 public class Objeto {
00012     private Id classeObjeto;
00013 
00017     private AmbienteExecucao estado;
00018 
00024     public Objeto(Id classeObjeto,  AmbienteExecucao estado) {
00025         this.classeObjeto = classeObjeto;
00026         this.estado = estado;
00027     }
00032     public Id getClasse() {
00033          return classeObjeto;
00034     }
00035 
00040     public AmbienteExecucao getEstado() {
00041          return estado;
00042     }
00043 
00048     public void setEstado(AmbienteExecucao novoEstado) {
00049          this.estado = novoEstado;
00050     }
00051 
00052 }

Generated on Mon Aug 8 20:20:47 2005 for Linguagem OO1 - Generics by  doxygen 1.4.4