Package org.pentaho.reporting.libraries.designtime.swing

Examples of org.pentaho.reporting.libraries.designtime.swing.GenericTransferable


    protected Transferable createTransferable(final JComponent c)
    {
      final JList lcomp = (JList) c;
      final Object[] selectedValues = lcomp.getSelectedValues();
      return new GenericTransferable(selectedValues);
    }
View Full Code Here


  public void setContents(final Object[] contents)
  {
    try
    {
      clipboard.setContents(new GenericTransferable(contents), this);
      fireContentsChanged();
    }
    catch (Exception ie)
    {
      UncaughtExceptionsModel.getInstance().addException(ie);
View Full Code Here

    protected Transferable createTransferable(final JComponent c)
    {
      final JList lcomp = (JList) c;
      final Object[] selectedValues = lcomp.getSelectedValues();
      return new GenericTransferable(selectedValues);
    }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.libraries.designtime.swing.GenericTransferable

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.