Back to project page playnomics-android.
The source code is released under:
Apache License
If you think the Android project playnomics-android 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 com.playnomics.android.messaging; /*from w w w.ja va 2 s.co m*/ public class Position { public enum PositionType { FULLSCREEN, } private PositionType positionType; public PositionType getPositionType() { return positionType; } public void setPositionType(PositionType positionType) { this.positionType = positionType; } public Position(PositionType positionType) { this.positionType = positionType; } }