Package propagation.impl

Examples of propagation.impl.StateItemImpl


public class StateItemImplTest extends TestCase {
   private StateItem stateItem_;

   protected void setUp() throws Exception {
      stateItem_ = new StateItemImpl(1234);
   }
View Full Code Here


   /*
    * Test method for 'propagation.impl.NodeImpl.findStateItem(long)'
    */
   public void testFindStateItem() {
      StateItem[] stateItems_ = new StateItem[5];
      stateItems_[0] = new StateItemImpl(123);
      stateItems_[1] = new StateItemImpl(850884);
      stateItems_[2] = new StateItemImpl(35);
      stateItems_[3] = new StateItemImpl(38910);
      stateItems_[4] = new StateItemImpl(5230);

      for (int idx = 0; idx < stateItems_.length; idx++) {
         node_.addStateItem(stateItems_[idx]);
      }

View Full Code Here

TOP

Related Classes of propagation.impl.StateItemImpl

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.