use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnScrollAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnScrollAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnCheckedChangeAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnCheckedChangeAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnRatingBarChangeAttributeTest method setUp.
@Before
public void setUp() {
view.setNumStars(NUM_STARS_TO_SHOW);
attribute = new OnRatingBarChangeAttribute();
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnTextChangedAttributeTest method setUp.
@Before
public void setUp() {
view = new EditText(RuntimeEnvironment.application);
eventCommand = new EventCommand();
}
use of org.robobinding.widget.EventCommand in project RoboBinding by RoboBinding.
the class OnSeekBarChangeAttributeTest method setUp.
@Before
public void setUp() {
attribute = new OnSeekBarChangeAttribute();
eventCommand = new EventCommand();
}
Aggregations