Package org.mage.plugins.rating.ui

Examples of org.mage.plugins.rating.ui.BigCard


    int h = getGraphicsConfiguration().getBounds().height;
    setLocation((w - width) / 2, (h - height) / 2);
    setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    setLayout(null);

    bigCard = new BigCard();
    bigCard.setBounds(20, 10, RateThread.bigCardDimension.frameWidth, RateThread.bigCardDimension.frameHeight);
    bigCard.setBorder(BorderFactory.createLineBorder(Color.gray));
    add(bigCard);

    JLabel label = new JLabel("The results are stored for every 10 compare.");
View Full Code Here

TOP

Related Classes of org.mage.plugins.rating.ui.BigCard

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.