1 28 29 package org.objectweb.fractal.explorer.context; 30 31 import org.objectweb.fractal.api.Interface; 32 import org.objectweb.util.explorer.core.common.lib.DefaultContextContainer; 33 34 39 public class ClientCollectionInterfaceContainer 40 extends DefaultContextContainer 41 { 42 43 49 50 protected Interface itf_; 51 52 58 62 public ClientCollectionInterfaceContainer(Interface itf) { 63 super(); 64 itf_ = itf; 65 } 66 67 73 79 83 public Interface getItf() { 84 return itf_; 85 } 86 } | Popular Tags |