void setBackground(Color presetBackground) {
mAuctionUI.setBackground(presetBackground);
}
AuctionListHolder(String name, boolean _completed, boolean deletable) {
mAuctionList = new Auctions(name);
if(_completed) mAuctionList.setComplete();
mAuctionUI = new AuctionsUIModel(mAuctionList, sTableContext, sFrameContext, sCornerButtonListener);
mDeletable = deletable;
JTabManager.getInstance().add(name, mAuctionUI.getPanel(), mAuctionUI.getTable());
}