package com.c2kernel.lifecycle.instance.predefined.entitycreation; public class Geometry implements java.io.Serializable { public int x; public int y; public int width; public int height; public Geometry() { super(); } public Geometry(int x, int y, int width, int height) { this.x = x; this.y = y; this.width = width; this.height = height; } }