KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > joshy > html > NullLayout


1 package org.joshy.html;
2
3 import java.awt.*;
4 import org.w3c.dom.*;
5 import org.joshy.*;
6 import org.joshy.html.box.*;
7
8 public class NullLayout extends Layout {
9     public Box layout(Context c, Element elem) {
10         return new Box(0,0,0,0);
11     }
12     public void paint(Context c, Box box) {
13     }
14 }
15
16
Popular Tags