TavernerPOS - Source Code

Clone: 

git clone http://www.librarysmith.co.uk/tavernerPOS

 

package com.floreantpos.actions;

import com.floreantpos.POSConstants;
import com.floreantpos.ui.dialog.PayoutDialog;

public class PayoutAction extends PosAction {

	public PayoutAction() {
		super(POSConstants.PAYOUT_BUTTON_TEXT); //$NON-NLS-1$
	}

	@Override
	public void execute() {
		PayoutDialog dialog = new PayoutDialog();
		dialog.open();
	}

}

Add comment
These comments are moderated so so won't be published until reviewed.