Package org.olat.core.commons.services.clipboard.impl

Source Code of org.olat.core.commons.services.clipboard.impl.ClipboardServiceImpl

/**
* OLAT - Online Learning and Training<br>
* http://www.olat.org
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Copyright (c) 1999-2006 at Multimedia- & E-Learning Services (MELS),<br>
* University of Zurich, Switzerland.
* <p>
*/
package org.olat.core.commons.services.clipboard.impl;

import org.olat.core.commons.services.clipboard.ClipboardEntry;
import org.olat.core.commons.services.clipboard.ClipboardEntryCreator;
import org.olat.core.commons.services.clipboard.ClipboardService;
import org.olat.core.gui.UserRequest;
import org.olat.core.gui.control.Controller;
import org.olat.core.gui.control.Event;
import org.olat.core.gui.control.WindowControl;
import org.olat.core.gui.control.creator.ControllerCreator;
import org.olat.core.logging.AssertException;

/**
* @author Felix Jost, http://www.goodsolutions.ch
*
*/
public class ClipboardServiceImpl implements ClipboardService {

  private ClipboardEntry clipboardEntry;

  /* (non-Javadoc)
   * @see org.olat.core.commons.services.clipboard.ClipboardService#createCopyToUIService()
   */
  public ControllerCreator createCopyToUIService(final ClipboardEntryCreator cbec) {
    return new ControllerCreator() {
      public Controller createController(UserRequest ureq, WindowControl wControl) {
        return new CopyToClipboardController(ureq, wControl, ClipboardServiceImpl.this, cbec);
      }};
  }
 
  public ControllerCreator createPasteFromUIService(final Class[] acceptedFlavorInterfaces) {
    return new ControllerCreator() {
      public Controller createController(UserRequest ureq, WindowControl wControl) {
        return new PasteFromClipboardController(ureq, wControl, ClipboardServiceImpl.this, acceptedFlavorInterfaces);
      }};
  }

  public ClipboardEntry getClipboardEntryFrom(Event event) {
    ClipboardEvent cbe = (ClipboardEvent)event;
    return cbe.getClipboardEntry();
  }

 

  ClipboardEntry getClipboardEntry() {
    return clipboardEntry;
  }

  void setClipboardEntry(ClipboardEntry clipboardEntry) {
    this.clipboardEntry = clipboardEntry;
  }

  /* (non-Javadoc)
   * @see org.olat.core.commons.services.clipboard.ClipboardService#onceGetClipboardUI()
   */
  public ControllerCreator onceGetClipboardUI() {
    return new ControllerCreator(){
      public Controller createController(UserRequest ureq, WindowControl wControl) {
        return new ClipboardTrayController(ureq, wControl, ClipboardServiceImpl.this);
      }};
  }

}
TOP

Related Classes of org.olat.core.commons.services.clipboard.impl.ClipboardServiceImpl

TOP
Copyright © 2018 www.massapi.com. 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.