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 toString() { 10 return "Border: top = " + top + " right = " + right + " bottom = " + bottom + " left = " + left; 11 } 12 } 13 14