1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 02:06:01 +02:00

Still trying to fix build errors caused by non UTF-8 characters.

This commit is contained in:
Doug Schaefer 2007-06-12 15:49:53 +00:00
parent 7449392555
commit a22ef372aa
7 changed files with 15 additions and 15 deletions

View file

@ -59,9 +59,9 @@ public interface IAdditionalInput {
/** /**
* Returns the kind of additional input. The valid values are: * 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_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 - added as an additional input to the command line, but not as a dependency.
* KIND_ADDITIONAL_INPUT_DEPENDENCY added as both. * KIND_ADDITIONAL_INPUT_DEPENDENCY - added as both.
* The default is KIND_ADDITIONAL_INPUT_DEPENDENCY * The default is KIND_ADDITIONAL_INPUT_DEPENDENCY
*/ */
public int getKind(); public int getKind();

View file

@ -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 * 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 id -the option to be modified
* @param adjustExtension if false, modifications are to be made for the non-extension element * @param adjustExtension - if false, modifications are to be made for the non-extension element
* (only for some particular configuration associated with some eclipse project) * (only for some particular configuration associated with some eclipse project)
* This is the most common use of this method. * This is the most common use of this method.
* *

View file

@ -54,9 +54,9 @@ public interface IInputOrder {
* for the case where a single input file needs to be specified multiple times on the * 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. * command line. The order numbers begin at 1. Not all values need to be specified.
* Unordered resources will fill the first "gap". For example: * Unordered resources will fill the first "gap". For example:
* To specify the first input file, use 1. * - 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 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 only the first two input files and last input file, use 1, 2 & 4.
* *
* @return String * @return String
*/ */

View file

@ -17,7 +17,7 @@ import org.w3c.dom.Element;
/** /**
* This class represents a project instance in the managed build system. * This class represents a project instance in the managed build system.
* Project instances are stored in the .cdtbuild file. Note that there * 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. * would never be used.
* <p> * <p>
* The following steps occur when a CDT user creates a new Managed Build * 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. * 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 * 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 selected configuration element, create a tool element child of
* the cloned configurations tool-chain element that specifies the * the cloned configuration's tool-chain element that specifies the
* original tool element as its superClass. * original tool element as its superClass.
* This prepares the new project/configurations for modification by the user. * This prepares the new project/configurations for modification by the user.
* *

View file

@ -19,7 +19,7 @@ import org.eclipse.jface.wizard.IWizardPage;
* This abstract class provides a convenient, partial implementation of the IWizardPage interface. * This abstract class provides a convenient, partial implementation of the IWizardPage interface.
* This class consults with the MBSCustomPageManager to determine its actions. * This class consults with the MBSCustomPageManager to determine its actions.
* If an ISVs 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. * carefully coded to function properly while still respecting the rules laid out by the page manager.
*/ */
public abstract class MBSCustomPage implements IWizardPage public abstract class MBSCustomPage implements IWizardPage

View file

@ -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 * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Norbert Plött (Seimens) - Initial Contribution * Norbert Ploett (Seimens) - Initial Contribution
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.ui.tests.text.contentassist; package org.eclipse.cdt.ui.tests.text.contentassist;

View file

@ -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 * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Norbert Plött (Seimens) - Initial Contribution * Norbert Ploett (Seimens) - Initial Contribution
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.ui.tests.text.contentassist; package org.eclipse.cdt.ui.tests.text.contentassist;