Back to project page simple-painting.
The source code is released under:
MIT License
If you think the Android project simple-painting 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 org.hogel.android.simplepainting.model; /*from www .j av a 2 s.c om*/ import lombok.AllArgsConstructor; import lombok.Data; import java.io.Serializable; @Data @AllArgsConstructor(suppressConstructorProperties = true) public class Point implements Serializable { public float x; public float y; }