Back to project page Calma.
The source code is released under:
Apache License
If you think the Android project Calma 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.espian.showcaseview.targets; //ww w . j a v a 2 s .com import android.graphics.Point; public class PointTarget implements Target { private final Point mPoint; public PointTarget(Point point) { mPoint = point; } public PointTarget(int xValue, int yValue) { mPoint = new Point(xValue, yValue); } @Override public Point getPoint() { return mPoint; } }