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

DefClasseGenerica.java

Go to the documentation of this file.
00001 package plp.orientadaObjetos1.memoria;
00002 
00003 import plp.orientadaObjetos1.declaracao.procedimento.DecProcedimento;
00004 import plp.orientadaObjetos1.declaracao.variavel.DecVariavel;
00005 import plp.orientadaObjetos1.util.Tipo;
00006 
00011 public class DefClasseGenerica extends DefClasse {
00012     
00013     private Tipo tipoGeneric;
00014     
00021     public DefClasseGenerica(DecVariavel decVariavel, DecProcedimento decProcedimento, Tipo tipoGeneric) {
00022         super(decVariavel, decProcedimento);
00023         this.tipoGeneric = tipoGeneric;
00024     }
00025     
00030     public Tipo getTipoGeneric(){
00031         return tipoGeneric;
00032     }
00033 }

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