From 1a2a80df49e75d7843dc78d55aed6ef4ce1c5a8b Mon Sep 17 00:00:00 2001 From: Oleg Krasilnikov Date: Wed, 7 Mar 2007 15:05:18 +0000 Subject: [PATCH] Remove SDK tab --- .../src/org/eclipse/cdt/ui/newui/SDKsTab.java | 42 ------------------- 1 file changed, 42 deletions(-) delete mode 100644 core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SDKsTab.java diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SDKsTab.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SDKsTab.java deleted file mode 100644 index 1c0e40f1cfe..00000000000 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/newui/SDKsTab.java +++ /dev/null @@ -1,42 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2007 Intel Corporation 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: - * Intel Corporation - initial API and implementation - *******************************************************************************/ -package org.eclipse.cdt.ui.newui; - -import org.eclipse.swt.SWT; -import org.eclipse.swt.layout.GridData; -import org.eclipse.swt.layout.GridLayout; -import org.eclipse.swt.widgets.Composite; -import org.eclipse.swt.widgets.Label; - -import org.eclipse.cdt.core.settings.model.ICResourceDescription; - -public class SDKsTab extends AbstractCPropertyTab { - - public void createControls(Composite parent) { - super.createControls(parent); - usercomp.setLayout(new GridLayout()); - Label l = new Label(usercomp, SWT.NONE); - l.setLayoutData(new GridData(GridData.BEGINNING)); - } - - public void updateData(ICResourceDescription cfg) { - } - public void performApply(ICResourceDescription src,ICResourceDescription dst) { - } - protected void performDefaults() { - } - - // This page can be displayed for project only - public boolean canBeVisible() { - return page.isForProject(); - } - -}