001package gudusoft.gsqlparser.dlineage.graph.ui; 002 003public class Position { 004 protected float width; 005 protected float height; 006 protected float x; 007 protected float y; 008 009 public float getWidth() { 010 return width; 011 } 012 013 public void setWidth(float width) { 014 this.width = width; 015 } 016 017 public float getHeight() { 018 return height; 019 } 020 021 public void setHeight(float height) { 022 this.height = height; 023 } 024 025 public float getX() { 026 return x; 027 } 028 029 public void setX(float x) { 030 this.x = x; 031 } 032 033 public float getY() { 034 return y; 035 } 036 037 public void setY(float y) { 038 this.y = y; 039 } 040}