1 package cve.core.costruttori; 2 3 import cve.core.elementLDL.*; 4 5 import cve.staticLayout.*; 6 7 import org.apache.log4j.Logger; 8 9 15 public class IstanziaElement implements IIstanziatore { 16 17 24 public IElementoCve crea(String tipo, String id, Class eleCve){ 25 Cve.errLog.debug(""); 26 IElementoCve ele=new ElementoCve(tipo, id, eleCve); 27 return ele; 28 } 29 30 38 public IElementoCveVis crea(String tipo, String id, Class eleCve, DescrCveToolBar cveT){ 39 Cve.errLog.debug(""); 40 IElementoCveVis ele=new ElementCveVis(tipo, id, eleCve,cveT); 41 return ele; 42 } 43 44 53 public IElementoCveVis crea(String tipo, String id, Class eleCve, DescrCveToolBar cveT, DescrCveMenu cveM){ 54 Cve.errLog.debug(""); 55 IElementoCveVis ele=new ElementCveVis(tipo, id, eleCve,cveT,cveM); 56 return ele; 57 } 58 } 59 | Popular Tags |