Package com.werken.blissed.activity

Examples of com.werken.blissed.activity.NoOpActivity


                                  "state one" );

        assertSame( NoOpActivity.INSTANCE,
                    state1.getActivity() );

        Activity newActivity = new NoOpActivity();

        state1.setActivity( newActivity );

        assertSame( newActivity,
                    state1.getActivity() );
View Full Code Here


        State state = new State.TerminalState();

        assertSame( NoOpActivity.INSTANCE,
                    state.getActivity() );

        state.setActivity( new NoOpActivity() );

        assertSame( NoOpActivity.INSTANCE,
                    state.getActivity() );
    }
View Full Code Here

TOP

Related Classes of com.werken.blissed.activity.NoOpActivity

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.