diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IAdditionalInput.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IAdditionalInput.java index e88cc5c7b4f..81ad6cd818f 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IAdditionalInput.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IAdditionalInput.java @@ -59,9 +59,9 @@ public interface IAdditionalInput { /** * Returns the kind of additional input. The valid values are: - * • KIND_ADDITIONAL_DEPENDENCY – added as a tool dependency, but not to the command line. - * • KIND_ADDITIONAL_INPUT – added as an additional input to the command line, but not as a dependency. - * • KIND_ADDITIONAL_INPUT_DEPENDENCY – added as both. + * KIND_ADDITIONAL_DEPENDENCY - added as a tool dependency, but not to the command line. + * KIND_ADDITIONAL_INPUT - added as an additional input to the command line, but not as a dependency. + * KIND_ADDITIONAL_INPUT_DEPENDENCY - added as both. * The default is KIND_ADDITIONAL_INPUT_DEPENDENCY */ public int getKind(); diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IHoldsOptions.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IHoldsOptions.java index ccc4756e53c..94fae3aa8c7 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IHoldsOptions.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IHoldsOptions.java @@ -145,8 +145,8 @@ public interface IHoldsOptions extends IBuildObject { * This method should be called in order to obtain the option whose value and attributes could be directly changed/adjusted * - * @param id –the option to be modified - * @param adjustExtension – if false, modifications are to be made for the non-extension element + * @param id -the option to be modified + * @param adjustExtension - if false, modifications are to be made for the non-extension element * (only for some particular configuration associated with some eclipse project) * This is the most common use of this method. * diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IInputOrder.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IInputOrder.java index a0862d17a71..0236db63635 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IInputOrder.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IInputOrder.java @@ -54,9 +54,9 @@ public interface IInputOrder { * for the case where a single input file needs to be specified multiple times on the * command line. The order numbers begin at 1. Not all values need to be specified. * Unordered resources will fill the first "gap". For example: - * • To specify the first input file, use 1. - * • To specify the last input file, without specifying an order for any other input file, use 2. - * • To specify only the first two input files and last input file, use 1, 2 & 4. + * - To specify the first input file, use 1. + * - To specify the last input file, without specifying an order for any other input file, use 2. + * - To specify only the first two input files and last input file, use 1, 2 & 4. * * @return String */ diff --git a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IManagedProject.java b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IManagedProject.java index 7fb596d9c51..9a52f4db6d3 100644 --- a/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IManagedProject.java +++ b/build/org.eclipse.cdt.managedbuilder.core/src/org/eclipse/cdt/managedbuilder/core/IManagedProject.java @@ -17,7 +17,7 @@ import org.w3c.dom.Element; /** * This class represents a project instance in the managed build system. * Project instances are stored in the .cdtbuild file. Note that there - * is no reason to define a project element in a manifest file – it + * is no reason to define a project element in a manifest file - it * would never be used. *

* The following steps occur when a CDT user creates a new Managed Build @@ -32,7 +32,7 @@ import org.w3c.dom.Element; * tool-chain that is the child of the selected configuration element. * 4. For each tool element child of the tool-chain that is the child of * the selected configuration element, create a tool element child of - * the cloned configuration’s tool-chain element that specifies the + * the cloned configuration's tool-chain element that specifies the * original tool element as its superClass. * This prepares the new project/configurations for modification by the user. * diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java index 1eb351ecfce..433a8dc6acc 100644 --- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java +++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/MBSCustomPage.java @@ -19,7 +19,7 @@ import org.eclipse.jface.wizard.IWizardPage; * This abstract class provides a convenient, partial implementation of the IWizardPage interface. * This class consults with the MBSCustomPageManager to determine its actions. - * If an ISV’s custom pages do not subclass MBSCustomPage then their page implementation must be + * If an ISV's custom pages do not subclass MBSCustomPage then their page implementation must be * carefully coded to function properly while still respecting the rules laid out by the page manager. */ public abstract class MBSCustomPage implements IWizardPage diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/ProposalFilterPreferencesTest.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/ProposalFilterPreferencesTest.java index b67dead7fcd..9af5812af80 100644 --- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/ProposalFilterPreferencesTest.java +++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/ProposalFilterPreferencesTest.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2006 Norbert Plött and others. + * Copyright (c) 2006 Norbert Ploett 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: - * Norbert Plött (Seimens) - Initial Contribution + * Norbert Ploett (Seimens) - Initial Contribution *******************************************************************************/ package org.eclipse.cdt.ui.tests.text.contentassist; diff --git a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/TestProposalFilter.java b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/TestProposalFilter.java index 4d204597cd3..d7db24fc73e 100644 --- a/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/TestProposalFilter.java +++ b/core/org.eclipse.cdt.ui.tests/ui/org/eclipse/cdt/ui/tests/text/contentassist/TestProposalFilter.java @@ -1,12 +1,12 @@ /******************************************************************************* - * Copyright (c) 2006 Norbert Plött and others. + * Copyright (c) 2006 Norbert Ploett 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: - * Norbert Plött (Seimens) - Initial Contribution + * Norbert Ploett (Seimens) - Initial Contribution *******************************************************************************/ package org.eclipse.cdt.ui.tests.text.contentassist;