Class RenderNodeState


  • public class RenderNodeState
    extends java.lang.Object
    Creation-Date: 01.07.2006, 14:38:13
    Author:
    Thomas Morgner
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getWeight()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • UNCLEAN

        public static final RenderNodeState UNCLEAN
        The node is new or has undergone some major structural changes. Dont assume anything.
      • PENDING

        public static final RenderNodeState PENDING
        The node or one of its childs or predecessors has got new childs. The position is still valid, but all pending or unclean childs have to be revalidated. This may affect the margins of this box, so recompute them.
      • LAYOUTING

        public static final RenderNodeState LAYOUTING
        The box has done at least some layouting and has cached some information. Layouting is not finished. (Maybe the preferred size has been computed and stored for later use.)
      • FINISHED

        public static final RenderNodeState FINISHED
        The box is fully layouted and ready to be painted. An open box should never reach the finished state.
    • Method Detail

      • getWeight

        public int getWeight()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object