Package edu.stanford.bmir.protege.web.client.ui.tab

Examples of edu.stanford.bmir.protege.web.client.ui.tab.AbstractTab


        return generalPanel;
    }


    public boolean isControllingPortlet() {
        AbstractTab tab = getTab();
        if (tab == null) {
            return false;
        }
        return this.equals(tab.getControllingPortlet());
    }
View Full Code Here


        }
        return this.equals(tab.getControllingPortlet());
    }

    public void setAsControllingPortlet() {
        AbstractTab tab = getTab();
        if (tab == null) {
            return;
        }
        EntityPortlet oldCtrlPortlet = tab.getControllingPortlet();
        if (!(this.equals(oldCtrlPortlet))) {
            tab.setControllingPortlet(this);
        }
    }
View Full Code Here

TOP

Related Classes of edu.stanford.bmir.protege.web.client.ui.tab.AbstractTab

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.