Update of /cvsroot/displaytag/table-ben/src/com/tablelib/core/table
In directory sc8-pr-cvs1:/tmp/cvs-serv11577

Added Files:
        Table.java 
Log Message:


--- NEW FILE: Table.java ---
/**
 * Created by IntelliJ IDEA.
 * User: Benjamin Simpson
 * Date: Jan 11, 2003
 * Time: 8:44:51 PM
 */
package com.tablelib.core.table;

public interface Table {

    public int getWidth();
    public boolean isWidthPercentage();
    public int getHeight();
    public int getBorder();
    public int getCellPadding();
    public int getCellSpacing();
    public int getHSpace();
    public int getVSpace();
    public String getBgColor();
    public String getBackGround();

    public void setWidth(int width);
    public void setWidthIsPercentage(boolean isPercentage);
    public void setHeight(int height);
    public void setBorder(int border);
    public void setCellPadding(int cellPadding);
    public void setCellSpacing(int cellPadding);
    public void setHSpace(int hSpace);
    public void setVSpace(int vSpace);
    public void setBgColor(String bgColor);
    public void setBackGround(String backGround);
    public void declareTable(StringBuffer buff);

}




-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to