Ejemplo n.º 1
0
 public void removeChild(DisplaySpace spacer)
 {
     this.currentHeight -= spacer.getSize();
     this.children.Remove(spacer);
 }
Ejemplo n.º 2
0
 public void removeChild(DisplaySpace spacer)
 {
     this.currentHeight -= spacer.getSize();
     this.children.Remove(spacer);
 }
Ejemplo n.º 3
0
        /**
         * render display space
         *
         * @param space the display space to render
         */

        public void RenderDisplaySpace(DisplaySpace space) {
            int d = space.getSize();
            this.currentYPosition -= d;
        }