1 3 package org.objectweb.fractal.swing; 4 5 import org.objectweb.fractal.api.control.BindingController; 6 7 public class FlowLayoutImpl 8 extends java.awt.FlowLayout 9 implements FlowLayoutItf, FlowLayoutAttributes, BindingController 10 { 11 12 public FlowLayoutImpl () { 13 super(); 14 } 15 public FlowLayoutImpl (int arg0) { 16 super(arg0); 17 } 18 public FlowLayoutImpl (int arg0, int arg1, int arg2) { 19 super(arg0,arg1,arg2); 20 } 21 22 public String [] listFc () { 23 return new String [0]; 25 } 26 27 public Object lookupFc (String clientItfName) { 28 return null; 30 } 31 32 public void bindFc (String clientItfName, Object serverItf) { 33 } 35 36 public void unbindFc (String clientItfName) { 37 } 39 40 } 41 | Popular Tags |