Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'launch/org.eclipse.cdt.launchbar.core/src/org/eclipse/cdt/launchbar/core/internal/DefaultLaunchDescriptor.java')
-rw-r--r--launch/org.eclipse.cdt.launchbar.core/src/org/eclipse/cdt/launchbar/core/internal/DefaultLaunchDescriptor.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/launch/org.eclipse.cdt.launchbar.core/src/org/eclipse/cdt/launchbar/core/internal/DefaultLaunchDescriptor.java b/launch/org.eclipse.cdt.launchbar.core/src/org/eclipse/cdt/launchbar/core/internal/DefaultLaunchDescriptor.java
deleted file mode 100644
index 5038eff773e..00000000000
--- a/launch/org.eclipse.cdt.launchbar.core/src/org/eclipse/cdt/launchbar/core/internal/DefaultLaunchDescriptor.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2014 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Doug Schaefer
- *******************************************************************************/
-package org.eclipse.cdt.launchbar.core.internal;
-
-import org.eclipse.cdt.launchbar.core.ILaunchDescriptor;
-import org.eclipse.cdt.launchbar.core.ILaunchDescriptorType;
-import org.eclipse.core.runtime.PlatformObject;
-import org.eclipse.debug.core.ILaunchConfiguration;
-
-/**
- * A special launch descriptor that managed configurations that aren't owned by other
- * descriptors.
- */
-public class DefaultLaunchDescriptor extends PlatformObject implements ILaunchDescriptor {
-
- private final DefaultLaunchDescriptorType type;
- private final ILaunchConfiguration configuration;
-
- public DefaultLaunchDescriptor(DefaultLaunchDescriptorType type, ILaunchConfiguration configuration) {
- this.type = type;
- this.configuration = configuration;
- }
-
- @Override
- public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
- if (ILaunchConfiguration.class.equals(adapter)) {
- return configuration;
- }
- return super.getAdapter(adapter);
- }
-
- @Override
- public String getName() {
- return configuration.getName();
- }
-
- @Override
- public ILaunchDescriptorType getType() {
- return type;
- }
-
-}

Back to the top