Package com.sk89q.skmcl.profile

Examples of com.sk89q.skmcl.profile.SimpleProfile


            SwingHelper.showErrorDialog(
                    this, _("createProfile.emptyNameError"), _("invalidInput.title"));
            return;
        }

        SimpleProfile profile = new SimpleProfile();
        application.setVersion(version);
        profile.setApplication(application);
        profile.setName(name);
        try {
            getLauncher().getProfiles().add(profile);
            dispose();
        } catch (IOException e) {
            log.log(Level.WARNING, "Failed to create a profile", e);
View Full Code Here

TOP

Related Classes of com.sk89q.skmcl.profile.SimpleProfile

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.