package com.yoursway.commons.commitmodel; public class Tree { public int x = 1; public int y = 42; public Tree(int x, int y) { this.x = x; this.y = y; } }