Package org.olat.core.gui.control.dragdrop

Examples of org.olat.core.gui.control.dragdrop.DraggableCreator


   * as usual, all methods here are not threadsafe
   */
  public DragAndDrop getDragAndDrop() {
    // a space saver, since only a few panels will support drag and drop.
    if (dragAndDropImpl == null) {
      dragAndDropImpl = new DragAndDropImpl(new DraggableCreator() {
        public Draggable createDraggable() {
          Draggable drag = new Draggable() {
            public List getContainerIds() {
              return Panel.this.draggableGetContainerIds();
            }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.dragdrop.DraggableCreator

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.