KickJava   Java API By Example, From Geeks To Geeks.

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


1 package org.joshy.html;
2
3 public class Border {
4     public int top;
5     public int bottom;
6     public int left;
7     public int right;
8     
9     public String JavaDoc toString() {
10         return "Border: top = " + top + " right = " + right + " bottom = " + bottom + " left = " + left;
11     }
12 }
13
14
Popular Tags