Back to project page android-grid-wichterle.
The source code is released under:
Apache License
If you think the Android project android-grid-wichterle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package eu.inmite.android.gridwichterle.bus; /*w ww . j a v a 2s .co m*/ /** * Created with IntelliJ IDEA. * User: Michal Matl (michal.matl@inmite.eu) * Date: 10/13/13 * Time: 7:05 PM */ public class GridOnOffBus { public static final int ACTION_GRID_ON = 0; public static final int ACTION_GRID_OFF = 1; private int mAction; public GridOnOffBus(int action) { mAction = action; } public int getAction() { return mAction; } }