/** * */ package net.conselldemallorca.helium.jbpm3.integracio; /** * La posiciĆ³ d'un node * * @author Limit Tecnologies <limit@limit.es> */ public class JbpmNodePosition { private int posX; private int posY; private int width; private int height; public int getPosX() { return posX; } public void setPosX(int posX) { this.posX = posX; } public int getPosY() { return posY; } public void setPosY(int posY) { this.posY = posY; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } }