package HTML;

public class HTMLHiddenInput extends HTMLInput {

  // Default Constructor
  public HTMLHiddenInput() {

    // Set the Input Type to "HIDDEN"
    setType("HIDDEN");
  }
} 