Package edu.hawaii.ics.csdl.jupiter.ui

Examples of edu.hawaii.ics.csdl.jupiter.ui.ReviewFileLabelProvider


  protected void addFile() {
    IWorkbench workbench = PlatformUI.getWorkbench();
    Shell shell = workbench.getActiveWorkbenchWindow().getShell();
   
    ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(shell,
        new ReviewFileLabelProvider(), new ReviewFileContentProvider());
    dialog.setValidator(new ReviewFileSelectionStatusValidator());
    dialog.setBlockOnOpen(true);
    dialog.setInput(new File(this.project.getLocation().toString()));
    dialog.setTitle(ReviewI18n.getString("ReviewIdEditDialog.label.tab.file.add.title"));
    dialog.setMessage(ReviewI18n.getString("ReviewIdEditDialog.label.tab.file.add.message"));
View Full Code Here


  protected void addFile() {
    IWorkbench workbench = PlatformUI.getWorkbench();
    Shell shell = workbench.getActiveWorkbenchWindow().getShell();

    ElementTreeSelectionDialog dialog = new ElementTreeSelectionDialog(shell,
        new ReviewFileLabelProvider(), new ReviewFileContentProvider());
    dialog.setValidator(new ReviewFileSelectionStatusValidator());
    dialog.setBlockOnOpen(true);
    dialog.setInput(new File(this.project.getLocation().toString()));
    dialog.setTitle(ReviewI18n.getString("ReviewIdEditDialog.label.tab.file.add.title"));
    dialog.setMessage(ReviewI18n.getString("ReviewIdEditDialog.label.tab.file.add.message"));
View Full Code Here

TOP

Related Classes of edu.hawaii.ics.csdl.jupiter.ui.ReviewFileLabelProvider

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.