Package com.eastmountain.chinese.common

Examples of com.eastmountain.chinese.common.LessonStatus


        System.out.println( "!!! HanZiCounterPanel.update() invoked  !!!!" );
        System.out.println( "Class name: " + arg.getClass().getSimpleName() );

        if ( "LessonStatus".equals( arg.getClass().getSimpleName() ) ) {

            LessonStatus lessonStatus = (LessonStatus) arg;

            System.out.println( "Got a " + arg.getClass().getSimpleName() );

            setLevel( lessonStatus.getLevel() );
            setLessonNumber( lessonStatus.getLessonNumber() );
            setCardNumber( lessonStatus.getCardNumber() );

            System.out.println( "LessonStatus: " + lessonStatus );

            //repaint();
View Full Code Here


    public HanZiDisplayPanel() throws DBAccessException {

        hzFlashcardsDataModel = HZFlashcardsDataModel.getInstance();
        hzFlashcardsDataModel.addObserver( this );

        lessonStatus = new LessonStatus();

        setLayout( new FlowLayout() );

        adjustAlphaDown( (float) 1.0 );
        adjustAlphaUp( (float) 1.0 );
View Full Code Here

TOP

Related Classes of com.eastmountain.chinese.common.LessonStatus

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.