Package com.poker.ui.windows.auxiluary

Examples of com.poker.ui.windows.auxiluary.WindowPosition


    }

    void PreparePositions() {

        WindowPosition wpos;
        for (int j = 0; j < this.programSettings.getNumPositionRows(); j++) {
            for (int i = 0; i < this.programSettings.getNumPositionCols(); i++) {
                wpos = new WindowPosition();
                wpos.setX(i);
                wpos.setY(j);
                wpos.setPosNum(i + j * this.programSettings.getNumPositionCols());
                wpos.setPlayWindow(null);
                this.windowsPos.add(wpos);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.poker.ui.windows.auxiluary.WindowPosition

Copyright © 2018 www.massapicom. 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.