1 3 package org.objectweb.fractal.swing; 4 5 import org.objectweb.fractal.api.control.BindingController; 6 7 public class JLabelImpl 8 extends javax.swing.JLabel 9 implements JLabelItf, JLabelAttributes, BindingController 10 { 11 12 public JLabelImpl (String arg0, javax.swing.Icon arg1, int arg2) { 13 super(arg0,arg1,arg2); 14 } 15 public JLabelImpl (String arg0, int arg1) { 16 super(arg0,arg1); 17 } 18 public JLabelImpl (String arg0) { 19 super(arg0); 20 } 21 public JLabelImpl (javax.swing.Icon arg0, int arg1) { 22 super(arg0,arg1); 23 } 24 public JLabelImpl (javax.swing.Icon arg0) { 25 super(arg0); 26 } 27 public JLabelImpl () { 28 super(); 29 } 30 31 public String [] listFc () { 32 return new String [0]; 34 } 35 36 public Object lookupFc (String clientItfName) { 37 return null; 39 } 40 41 public void bindFc (String clientItfName, Object serverItf) { 42 } 44 45 public void unbindFc (String clientItfName) { 46 } 48 49 } 50 | Popular Tags |