Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/ManagedProjectOptionBlock.java')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/ManagedProjectOptionBlock.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/ManagedProjectOptionBlock.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/ManagedProjectOptionBlock.java
deleted file mode 100644
index 02cc74db91f..00000000000
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/internal/ui/ManagedProjectOptionBlock.java
+++ /dev/null
@@ -1,57 +0,0 @@
-package org.eclipse.cdt.managedbuilder.internal.ui;
-
-/**********************************************************************
- * Copyright (c) 2002,2003 Rational Software Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * IBM Rational Software - Initial API and implementation
- * **********************************************************************/
-
-import org.eclipse.cdt.ui.dialogs.BinaryParserBlock;
-import org.eclipse.cdt.ui.dialogs.ICOptionContainer;
-import org.eclipse.cdt.ui.dialogs.TabFolderOptionBlock;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.ui.help.WorkbenchHelp;
-
-public class ManagedProjectOptionBlock extends TabFolderOptionBlock {
-
- private ErrorParserBlock errParserBlock;
- private BinaryParserBlock binaryParserBlock;
-
- /**
- * @param parent
- */
- public ManagedProjectOptionBlock(ICOptionContainer parent) {
- super(parent);
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.ui.dialogs.TabFolderOptionBlock#addTabs()
- */
- protected void addTabs() {
- errParserBlock = new ErrorParserBlock();
- addTab(errParserBlock);
- addTab(binaryParserBlock = new BinaryParserBlock());
- }
-
- public BinaryParserBlock getBinaryParserBlock() {
- return binaryParserBlock;
- }
-
- public ErrorParserBlock getErrorParserBlock() {
- return errParserBlock;
- }
-
- public Control createContents(Composite parent) {
- Control control = super.createContents( parent );
- if (getErrorParserBlock()!= null)
- WorkbenchHelp.setHelp(getErrorParserBlock().getControl(), ManagedBuilderHelpContextIds.MAN_PROJ_ERROR_PARSER);
-
- return control;
- }
-}

Back to the top