Package com.dragome.model.interfaces

Examples of com.dragome.model.interfaces.VisualBounds


    public boolean equals(Object obj)
    {
  if (obj instanceof VisualBounds)
  {
      VisualBounds otherBounds= (VisualBounds) obj;

      return getWidth() == otherBounds.getWidth() && getHeight() == otherBounds.getHeight() && getX() == otherBounds.getX() && getY() == otherBounds.getY();
  }

  return false;
    }
View Full Code Here

TOP

Related Classes of com.dragome.model.interfaces.VisualBounds

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.