Package net.sourceforge.squirrel_sql.client.gui.dnd

Examples of net.sourceforge.squirrel_sql.client.gui.dnd.FileEditorDropTargetListener$i18n


    }

    _session = session;
    _comp = new MyTextArea(session);
   
    dt = new DropTarget(_comp, new FileEditorDropTargetListener(session));
  }
View Full Code Here


    expect(dtde.getDropTargetContext()).andStubReturn(mockDropTargetContext);
    expect(dtde.getTransferable()).andStubReturn(mockTransferable);
    expect(mockSession.getSQLPanelAPIOfActiveSessionWindow()).andStubReturn(mockSqlPanelApi);
    dtde.acceptDrop(DnDConstants.ACTION_COPY_OR_MOVE);
    expectLastCall().anyTimes();
    classUnderTest = new FileEditorDropTargetListener(mockSession);
   
  }
View Full Code Here

                              syntaxFactory,
                              _plugin,
                              getIdentifier(),
                              _propertiesWrapper);

    dt = new DropTarget(_textArea, new FileEditorDropTargetListener(session));
  }
View Full Code Here

    _app = session.getApplication();

    _textArea = new OsterTextControl(session, prefs, getIdentifier());
   
    dt = new DropTarget(_textArea, new FileEditorDropTargetListener(session));
  }
View Full Code Here

      _textScrollPane = new RTextScrollPane(_textArea);

      _textScrollPane.setLineNumbersEnabled(prefs.isLineNumbersEnabled());


      dt = new DropTarget(_textArea, new FileEditorDropTargetListener(session));


      //////////////////////////////////////////////////////////////////////
      // Dragging inside the text area itself conflicts with file dnd
      // so we disable it. See bug #3006515
View Full Code Here

TOP

Related Classes of net.sourceforge.squirrel_sql.client.gui.dnd.FileEditorDropTargetListener$i18n

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.