1 23 package org.objectweb.clif.scenario.util.isac.plugin; 24 25 import org.apache.log4j.Category; 26 27 33 public class ParameterDescription { 34 static Category cat = Category.getInstance(ParameterDescription.class.getName()); 35 private String name ; 36 private String type ; 37 38 43 public ParameterDescription(String n, String t) { 44 cat.debug("-> constructor") ; 45 this.name = n ; 46 this.type = t ; 47 } 48 49 53 public String getName() { 54 cat.debug("-> getName") ; 55 return name; 56 } 57 58 62 public String getType() { 63 cat.debug("-> getType") ; 64 return type; 65 } 66 67 public String toString() { 68 return "("+name+","+type+")" ; 69 } 70 } 71 | Popular Tags |