Package de.ailis.xadrian.dialogs

Examples of de.ailis.xadrian.dialogs.ChangeQuantityDialog.open()


     */
    public void changeQuantity(final int index)
    {
        final ChangeQuantityDialog dialog = ChangeQuantityDialog.getInstance();
        dialog.setQuantity(this.complex.getQuantity(index));
        if (dialog.open() == Result.OK)
        {
            this.complex.setQuantity(index, dialog.getQuantity());
            doChange();
            redraw();
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.