java - JFace dialog with tabs -
i want implement tabbed dialog using jface in eclipse rce application. content of 1 of tabs should containerselectiondialog, content looks following:
containerselectiondialog dialog = new containerselectiondialog(         display.getdefault().getactiveshell(), container, true,         "please select target folder"); int open = dialog.open(); if (!(open == org.eclipse.jface.window.window.ok))     return null; object[] result = dialog.getresult();  ipath path = (ipath) result[0]; targetfolder = resourcesplugin.getworkspace().getroot().findmember(path); containerpath = targetfolder.getlocation().toportablestring();   how possible imlement tabbed dialog , add containerselectiondialog 1 of tabs?
you cannot that. said, selectioncontainerdialog is dialog. can't put content dialog.
take @ selectioncontainerdialog class, main content handled class named selectioncontainergroup. may place start but,be careful class, it's internal.
Comments
Post a Comment