001// Copyright (c) 2001 Hursh Jain (http://www.mollypages.org) 002// The Molly framework is freely distributable under the terms of an 003// MIT-style license. For details, see the molly pages web site at: 004// http://www.mollypages.org/. Use, modify, have fun ! 005 006package fc.util; 007 008/** 009A vertical VAlign enumeration. 010 011@author hursh jain 012**/ 013public class VAlign 014{ 015public static final VAlign TOP = new VAlign("top"); 016public static final VAlign BOTTOM = new VAlign("bottom"); 017public static final VAlign MIDDLE = new VAlign("middle"); 018 019public String toString() { return "VAlign="+name; } 020private String name; 021private VAlign(String name) { this.name = name; } 022} //~class VAlign