Package net.sf.jftp.gui.tasks

Examples of net.sf.jftp.gui.tasks.BookmarkItem


    }

    public void addBookmark(String pr, String h, String u, String p, int po,
                            String d, String l)
    {
        BookmarkItem x = new BookmarkItem(h);
        x.setUserdata(u, p);

        if(l.trim().startsWith("t"))
        {
            x.setLocal(true);
        }

        x.setPort(po);
        x.setProtocol(pr);
        x.setDirectory(d);

        //bookmarks
        current.add(x);
        marks.put(x.getLabel(), x);
        x.addActionListener(this);
    }
View Full Code Here

TOP

Related Classes of net.sf.jftp.gui.tasks.BookmarkItem

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.