1 3 package org.objectweb.fractal.swing; 4 5 import org.objectweb.fractal.api.control.BindingController; 6 7 public class BorderLayoutImpl 8 extends java.awt.BorderLayout 9 implements BorderLayoutItf, BorderLayoutAttributes, BindingController 10 { 11 12 public BorderLayoutImpl () { 13 super(); 14 } 15 public BorderLayoutImpl (int arg0, int arg1) { 16 super(arg0,arg1); 17 } 18 19 public String [] listFc () { 20 return new String [0]; 22 } 23 24 public Object lookupFc (String clientItfName) { 25 return null; 27 } 28 29 public void bindFc (String clientItfName, Object serverItf) { 30 } 32 33 public void unbindFc (String clientItfName) { 34 } 36 37 } 38 | Popular Tags |