Package edu.stanford.bmir.protege.web.client.actionbar.application

Source Code of edu.stanford.bmir.protege.web.client.actionbar.application.ShowAboutBoxHandlerImpl

package edu.stanford.bmir.protege.web.client.actionbar.application;

import edu.stanford.bmir.protege.web.client.about.AboutBox;

/**
* Author: Matthew Horridge<br>
* Stanford University<br>
* Bio-Medical Informatics Research Group<br>
* Date: 10/09/2013
*/
public class ShowAboutBoxHandlerImpl implements ShowAboutBoxHandler {

    @Override
    public void handleShowAboutBox() {
        AboutBox aboutBox = new AboutBox();
        aboutBox.show();
    }
}
TOP

Related Classes of edu.stanford.bmir.protege.web.client.actionbar.application.ShowAboutBoxHandlerImpl

TOP
Copyright © 2018 www.massapi.com. 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.