Home
last modified time | relevance | path

Searched refs:perspId (Results 1 – 11 of 11) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/
H A DIPerspectiveRegistryTest.java98 String perspId = page.getPerspective().getId() + ".1"; in XXXtestDeleteClonedPerspective() local
99 IPerspectiveDescriptor desc = fReg.clonePerspective(perspId, perspId, page.getPerspective()); in XXXtestDeleteClonedPerspective()
102 assertNotNull(fReg.findPerspectiveWithId(perspId)); in XXXtestDeleteClonedPerspective()
107 assertNull(fReg.findPerspectiveWithId(perspId)); in XXXtestDeleteClonedPerspective()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/
H A DOpenInNewWindowHandler.java43 String perspId = null; in execute() local
48 perspId = page.getPerspective().getId(); in execute()
51 perspId = activeWorkbenchWindow.getWorkbench().getPerspectiveRegistry().getDefaultPerspective(); in execute()
54 activeWorkbenchWindow.getWorkbench().openWorkbenchWindow(perspId, pageInput); in execute()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/
H A DOpenInNewWindowAction.java96 String perspId; in run() local
100 perspId = page.getPerspective().getId(); in run()
102 perspId = workbenchWindow.getWorkbench().getPerspectiveRegistry().getDefaultPerspective(); in run()
105 workbenchWindow.getWorkbench().openWorkbenchWindow(perspId, pageInput); in run()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/
H A DEmptyPerspective.java51 public static void setLastPerspective(String perspId) { in setLastPerspective() argument
52 LastPerspective = perspId; in setLastPerspective()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/
H A DTrimStackIdHelper.java71 String perspId = windowPerspId.substring(windowPerspId.indexOf('(') + 1, windowPerspId.length()); in parseTrimStackId() local
73 result.put(TrimStackIdPart.PERSPECTIVE_ID, perspId); in parseTrimStackId()
H A DTrimStack.java772 String perspId = parsedIds.get(TrimStackIdPart.PERSPECTIVE_ID); in findElement() local
775 if (perspId != null) { in findElement()
776 …List<MPerspective> perspectives = modelService.findElements(ps.get(0), perspId, MPerspective.class… in findElement()
H A DMinMaxAddon.java362 String perspId = '(' + oldPersp.getElementId() + ')'; in subscribeTopicSelectedElement() local
364 if (tc.getObject() instanceof TrimStack && tc.getElementId().contains(perspId)) { in subscribeTopicSelectedElement()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/ui/org.eclipse.pde.ui/src_samples/org/eclipse/pde/internal/ui/samples/
H A DSampleWizard.java108 String perspId = selection.getAttribute("perspectiveId"); //$NON-NLS-1$ in performFinish() local
110 if (perspId != null && switchPerspective) { in performFinish()
111 PlatformUI.getWorkbench().showPerspective(perspId, page.getWorkbenchWindow()); in performFinish()
H A DShowSampleAction.java111 String perspId = sample.getAttribute("perspectiveId"); //$NON-NLS-1$ in ensureProperContext() local
112 if (perspId != null) { in ensureProperContext()
115 PlatformUI.getWorkbench().showPerspective(perspId, PDEPlugin.getActiveWorkbenchWindow()); in ensureProperContext()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/migration/
H A DWorkbenchMigrationProcessor.java204 String perspId = perspective.getElementId(); in setPerspectiveIcon() local
206 perspId = (String) perspective.getTransientData().get(PerspectiveBuilder.ORIGINAL_ID); in setPerspectiveIcon()
208 IPerspectiveDescriptor orgPerspDescr = perspectiveRegistry.findPerspectiveWithId(perspId); in setPerspectiveIcon()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/
H A DWorkbenchPage.java3940 String perspId = mperspective.getElementId(); in fixOrphanPerspective() local
3942 …String msg = "Perspective with name '" + label + "' and id '" + perspId + "' has been made into a … in fixOrphanPerspective()
3950 PerspectiveDescriptor pd = new PerspectiveDescriptor(perspId, label, null); in fixOrphanPerspective()
5542 for (String perspId : perspSet) { in createPerspectiveBarExtras()
5543 MPerspective persp = (MPerspective) modelService.find(perspId, window); in createPerspectiveBarExtras()
5546 IPerspectiveDescriptor desc = getDescriptorFor(perspId); in createPerspectiveBarExtras()