Back to project page Visu.
The source code is released under:
Apache License
If you think the Android project Visu 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.ufavaloro.android.visu.draw.channel; /* w w w .jav a 2s. co m*/ import android.graphics.Rect; public abstract class ScreenElement { protected int id; protected float x; protected float y; protected float mHeight; protected float mWidth; protected Rect mBoundingBox; public float getX() { return x; } public void setX(int x) { this.x = x; } public float getY() { return y; } public void setY(int y) { this.y = y; } public int getId() { return id; } public Rect getBoundingBox() { return mBoundingBox; } public void setBoundingBox(Rect boundingBox) { mBoundingBox = boundingBox; } }