1 import org.aswing.Component;
2 import org.aswing.Container;
3 import org.aswing.geom.Dimension;
4 import org.aswing.LayoutManager;
5
6
9 class org.aswing.GridBagLayout implements LayoutManager {
10
11 public function addLayoutComponent(comp : Component, constraints : Object) : Void {
12 }
13
14 public function removeLayoutComponent(comp : Component) : Void {
15 }
16
17 public function preferredLayoutSize(target : Container) : Dimension {
18 return null;
19 }
20
21 public function minimumLayoutSize(target : Container) : Dimension {
22 return null;
23 }
24
25 public function maximumLayoutSize(target : Container) : Dimension {
26 return null;
27 }
28
29 public function layoutContainer(target : Container) : Void {
30 }
31
32 public function getLayoutAlignmentX(target : Container) : Number {
33 return null;
34 }
35
36 public function getLayoutAlignmentY(target : Container) : Number {
37 return null;
38 }
39
40 public function invalidateLayout(target : Container) : Void {
41 }
42
43 }