1 4 5 package cve.core.comunicazione; 6 7 import java.util.*; 8 9 import relations.*; 10 import cve.staticLayout.*; 11 12 import org.apache.log4j.Logger; 13 14 22 public class RelIntralayerCve extends RelOpenNO { 23 24 private String tipo; 25 26 30 public RelIntralayerCve (String nomeRel){ 31 super(nomeRel); 32 Cve.errLog.debug(""); 33 } 34 35 40 public RelIntralayerCve (String tipo1,String nomeRel){ 41 super(nomeRel); 42 Cve.errLog.debug(""); 43 this.tipo=tipo1; 44 } 45 46 50 public String getTipo(){ 51 Cve.errLog.debug(""); 52 return tipo; 53 } 54 55 60 public void setTipo(String tipo){ 61 Cve.errLog.debug(""); 62 this.tipo=tipo; 63 } 64 65 } 66 | Popular Tags |