001 package market.stdform;
002
003 import sale.FormSheet;
004 import sale.FormSheetContentCreator;
005
006 /**
007 * An empty FormSheet without buttons.
008 */
009 public class FSEmpty extends FormSheet {
010
011 /**
012 * ID for serialization.
013 */
014 private static final long serialVersionUID = -6028313591232770648L;
015
016 public FSEmpty() {
017 super("", new FormSheetContentCreator() {
018 private static final long serialVersionUID = -4925933022995457853L;
019 public void createFormSheetContent(final FormSheet fs) {
020 fs.removeAllButtons();
021 }
022 }, false);
023 }
024 }