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        public FSEmpty() {
012            super("", new FormSheetContentCreator() {
013                public void createFormSheetContent(final FormSheet fs) {
014                    fs.removeAllButtons();
015                }
016            },false);
017        }
018    }