mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Still trying to fix build errors caused by non UTF-8 characters.
This commit is contained in:
parent
7449392555
commit
a22ef372aa
7 changed files with 15 additions and 15 deletions
|
@ -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();
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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.
|
||||
* <p>
|
||||
* 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.
|
||||
*
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue