Examples of WebProtegeDialogForm


Examples of edu.stanford.bmir.protege.web.client.ui.library.dlg.WebProtegeDialogForm

    public ProjectConfigurationForm(ProjectId id) {
        this.projectId = id;
        projectTypeDropDown = new DropDown<ProjectType>(new ProjectTypeDropDownModel());

        WebProtegeDialogForm form = new WebProtegeDialogForm();
        form.addWidget(PROJECT_TYPE_DROPDOWN_FIELD_NAME, projectTypeDropDown);
        form.addVerticalSpacer();

//        defaultLanguageBox = form.addTextBox("Default language", "Enter a default language e.g. en", "en", new NullWebProtegeDialogTextFieldValidator());
//        form.addVerticalSpacer();

        projectDescriptionTextBox = new TextArea();
        projectDescriptionTextBox.setVisibleLines(3);
        projectDescriptionTextBox.setCharacterWidth(60);
        form.addWidget(PROJECT_DESCRIPTION_FIELD_NAME, projectDescriptionTextBox);

        form.addVerticalSpacer();

//        BioPortalConfigurationManager manager = BioPortalConfigurationManager.getManager();
//        bioPortalRestBaseTextBox = form.addTextBox("BioPortal Rest API Base", "The URL of the BioPortal Rest API Service", manager.getRestBase());

View Full Code Here
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.