Back to project page JiangHomeStyle_Android_Phone.
The source code is released under:
Apache License
If you think the Android project JiangHomeStyle_Android_Phone 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.cidesign.jianghomestylephone.entity; //from ww w . ja v a2s.c o m public class RelativeLayoutRulesEntity { private int rightOfVlaue; private int leftOfValue; private int belowOfValue; public int getRightOfVlaue() { return rightOfVlaue; } public void setRightOfVlaue(int rightOfVlaue) { this.rightOfVlaue = rightOfVlaue; } public int getLeftOfValue() { return leftOfValue; } public void setLeftOfValue(int leftOfValue) { this.leftOfValue = leftOfValue; } public int getBelowOfValue() { return belowOfValue; } public void setBelowOfValue(int belowOfValue) { this.belowOfValue = belowOfValue; } }