1 23 24 package org.objectweb.fractal.gui.model; 25 26 30 31 public class SharedClientInterface extends SharedInterface 32 implements ClientInterface 33 { 34 35 42 43 SharedClientInterface ( 44 final SharedComponent owner, 45 final Interface masterInterface) 46 { 47 super(owner, masterInterface); 48 } 49 50 public Binding getBinding () { 51 return ((ClientInterface)masterInterface).getBinding(); 52 } 53 } 54 | Popular Tags |