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

AcessoAtributo.java

Go to the documentation of this file.
00001 package plp.orientadaObjetos1.expressao.leftExpression;
00002 
00003 import plp.orientadaObjetos1.expressao.Expressao;
00007 public abstract class AcessoAtributo implements LeftExpression{
00008 
00012     private Id id;
00017     public AcessoAtributo(Id id) {
00018         this.id = id;
00019     }
00024     public Id getId(){
00025         return id;
00026     }
00031     public abstract Expressao getExpressaoObjeto();
00032 }

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