Package org.andrewberman.ui.ifaces

Examples of org.andrewberman.ui.ifaces.Positionable


      item.calcPreferredSize();
      float itemWidth = item.width;
      float itemHeight = item.height;
      if (item instanceof Positionable)
      {
        Positionable pos = (Positionable) item;
        pos.setPosition(x + xOffset, y + yOffset);
      }

      if (orientation == HORIZONTAL)
        xOffset += itemWidth;
      else
View Full Code Here

TOP

Related Classes of org.andrewberman.ui.ifaces.Positionable

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.