Package floobits.common

Examples of floobits.common.PersistentJson


import floobits.dialogs.CreateAccount;

public abstract class RequiresAccountAction extends AnAction {
    @Override
    public void actionPerformed(AnActionEvent e) {
        PersistentJson p = PersistentJson.getInstance();
        if (Settings.canFloobits()) {
            actionPerformedHasAccount(e);
        } else {
            CreateAccount createAccount1 = new CreateAccount(null);
            createAccount1.createCenterPanel();
View Full Code Here


        } catch (URISyntaxException error) {
            Flog.warn(error);
        }
    }
    public void update (AnActionEvent e) {
        PersistentJson p = PersistentJson.getInstance();
        e.getPresentation().setEnabledAndVisible(p.auto_generated_account);
    }
View Full Code Here

import java.util.LinkedList;

public class SelectRecentWorkspace extends CanFloobits {

    public static void joinRecent(Project project) {
        PersistentJson persistentJson = PersistentJson.getInstance();
        LinkedList<String> recent = new LinkedList<String>();
        for (Workspace workspace : persistentJson.recent_workspaces) {
            recent.add(workspace.url);
        }
        floobits.dialogs.SelectRecentWorkspace selectRecentWorkspace = new floobits.dialogs.SelectRecentWorkspace(project, recent);
View Full Code Here

TOP

Related Classes of floobits.common.PersistentJson

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.