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

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