Package org.woped.editor.controller.vc

Examples of org.woped.editor.controller.vc.TaskBarVC


    public IViewController createViewController(int type) {
        IViewController vc = null;
        switch (type) {
        case VIEWCONTROLLER_TASKBAR:
            vc = new TaskBarVC(TaskBarVC.ID_PREFIX);
            break;
        case VIEWCONTROLLER_CONFIG:
            if (getUi() != null && getUi().getComponent() instanceof JFrame) {
                vc = new ConfigVC((JFrame) getUi(), true, ConfigVC.ID_PREFIX);
            } else {
View Full Code Here

TOP

Related Classes of org.woped.editor.controller.vc.TaskBarVC

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.