1 28 29 package org.objectweb.fractal.explorer.context; 30 31 import org.objectweb.fractal.api.Interface; 32 33 38 public class InterfaceWrapper 39 { 40 41 protected Interface itf ; 42 43 46 public Interface getItf() { 47 return itf; 48 } 49 50 53 public void setItf(Interface itf) { 54 this.itf = itf; 55 } 56 57 61 public InterfaceWrapper(Interface itf) { 62 setItf(itf); 63 } 64 } 65 | Popular Tags |