export BROWSER=/usr/bin/firefox
# editor and other mixed settings...
- export EDITOR="$(which vi)"
+ export EDITOR="$(which vim)"
export VISUAL="$EDITOR"
# the editors for revision control must wait while document is edited,
# so gvim and others launched to x window are not appropriate.
* @license This file is free software; you can modify and redistribute it under the terms of the
* Apache License v2.0: http://www.apache.org/licenses/LICENSE-2.0
*/
-@SuppressWarnings({"serial", "rawtypes"})
+@SuppressWarnings("serial")
public class dragdrop_list_test extends JFrame implements ListSelectionListener
{
private DraggableDroppableList list;
private JTextField fileName;
static private Log logger = LogFactory.getLog(dragdrop_list_test.DraggableDroppableList.class);
- @SuppressWarnings("unchecked")
public dragdrop_list_test(String startPath)
{
super("dragdrop_test");
public class DraggableDroppableList extends JList implements IDragonDropDataProvider
{
- @SuppressWarnings("unchecked")
public DraggableDroppableList()
{
setModel(new DefaultListModel());