import HTML.*;

/*
    This class represents a table cell that acts as a
    container for the Sams Logo
*/
public class LogoCell extends HTMLTableCell {

  // Method Name: Constructor()
  // Purpose: Creates an HTMLTableCell object and adds an
  // HTMLImage of the Sams logo.
  public LogoCell() {

    super(HTMLTableCell.DATA);
    // add the HTMLImage object to the HTMLTableCell
    addObject(new HTMLImage("/images/sams.gif", "Sams Logo"));
  }
} 