mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
fix @since tags and bundle versions
This commit is contained in:
parent
0e9d71dcbb
commit
ac9667d8bd
22 changed files with 59 additions and 11 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true
|
||||
Bundle-Version: 5.1.0.qualifier
|
||||
Bundle-Version: 6.0.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -38,7 +38,7 @@ public interface IBuildResource {
|
|||
* Returns a URI that can be used by EFS to access the build resource.
|
||||
*
|
||||
* @return URI
|
||||
* @since 5.1
|
||||
* @since 6.0
|
||||
*/
|
||||
URI getLocationURI();
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ public interface IBuilder extends IBuildObject, IMakeBuilderInfo {
|
|||
static final String DEFAULT_TARGET_AUTO = "all"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
* @since 6.0
|
||||
*/
|
||||
static final String ATTRIBUTE_COMMAND_LAUNCHER = "commandLauncher"; //$NON-NLS-1$
|
||||
|
||||
|
@ -328,7 +328,7 @@ public interface IBuilder extends IBuildObject, IMakeBuilderInfo {
|
|||
* Returns the ICommandLauncher which should be used to launch the builder command.
|
||||
*
|
||||
* @return ICommandLauncher
|
||||
* @since 5.1
|
||||
* @since 6.0
|
||||
*/
|
||||
public ICommandLauncher getCommandLauncher();
|
||||
}
|
||||
|
|
|
@ -2202,7 +2202,7 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator2 {
|
|||
* Gets a path for a resource by extracting the Path field from its
|
||||
* location URI.
|
||||
* @return IPath
|
||||
* @since 5.1
|
||||
* @since 6.0
|
||||
*/
|
||||
protected IPath getPathForResource(IResource resource) {
|
||||
return new Path(resource.getLocationURI().getPath());
|
||||
|
|
|
@ -9,7 +9,7 @@ Bundle-Localization: plugin
|
|||
Export-Package: org.eclipse.cdt.managedbuilder.gnu.cygwin,
|
||||
org.eclipse.cdt.managedbuilder.gnu.ui
|
||||
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
||||
org.eclipse.cdt.managedbuilder.core;bundle-version="[5.1.0,6.0.0)",
|
||||
org.eclipse.cdt.managedbuilder.core;bundle-version="[6.0.0,7.0.0)",
|
||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||
org.eclipse.core.resources
|
||||
Bundle-ActivationPolicy: lazy
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.ui; singleton:=true
|
||||
Bundle-Version: 5.0.100.qualifier
|
||||
Bundle-Version: 5.1.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.ui.properties.ManagedBuilderUIPlugin
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-Localization: plugin
|
||||
|
@ -16,7 +16,7 @@ Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.2.0,4.0.0)",
|
|||
org.eclipse.ui;bundle-version="[3.2.0,4.0.0)",
|
||||
org.eclipse.cdt.core;bundle-version="[5.0.0,6.0.0)",
|
||||
org.eclipse.cdt.ui;bundle-version="[5.0.0,6.0.0)",
|
||||
org.eclipse.cdt.managedbuilder.core;bundle-version="[5.1.0,6.0.0)",
|
||||
org.eclipse.cdt.managedbuilder.core;bundle-version="[6.0.0,7.0.0)",
|
||||
org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)",
|
||||
org.eclipse.core.variables;bundle-version="[3.1.100,4.0.0)",
|
||||
org.eclipse.ui.navigator;bundle-version="[3.2.0,4.0.0)";resolution:=optional,
|
||||
|
|
|
@ -12,5 +12,8 @@ package org.eclipse.cdt.managedbuilder.ui.preferences;
|
|||
|
||||
import org.eclipse.cdt.ui.newui.PrefPage_Abstract;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_Env extends PrefPage_Abstract {
|
||||
}
|
||||
|
|
|
@ -11,5 +11,8 @@
|
|||
|
||||
package org.eclipse.cdt.managedbuilder.ui.preferences;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_MultiConfig extends PrefPage_PropertyPage {
|
||||
}
|
||||
|
|
|
@ -20,6 +20,9 @@ import org.eclipse.cdt.ui.newui.ICPropertyTab;
|
|||
import org.eclipse.cdt.ui.newui.UIMessages;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_NewCDTProject extends AbstractPrefPage {
|
||||
private ICConfigurationDescription prefCfgd = null;
|
||||
|
||||
|
|
|
@ -16,6 +16,9 @@ import org.eclipse.cdt.managedbuilder.ui.properties.Messages;
|
|||
import org.eclipse.cdt.ui.newui.AbstractPrefPage;
|
||||
import org.eclipse.cdt.ui.newui.ICPropertyTab;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_NewCDTWizard extends AbstractPrefPage {
|
||||
|
||||
protected String getHeader() {
|
||||
|
|
|
@ -16,6 +16,9 @@ import org.eclipse.cdt.ui.newui.AbstractPrefPage;
|
|||
import org.eclipse.cdt.ui.newui.ICPropertyTab;
|
||||
import org.eclipse.cdt.ui.newui.UIMessages;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_PropertyPage extends AbstractPrefPage {
|
||||
|
||||
protected String getHeader() {
|
||||
|
|
|
@ -12,6 +12,9 @@ package org.eclipse.cdt.managedbuilder.ui.preferences;
|
|||
|
||||
import org.eclipse.cdt.ui.newui.PrefPage_Abstract;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PrefPage_Vars extends PrefPage_Abstract {
|
||||
|
||||
}
|
||||
|
|
|
@ -37,6 +37,9 @@ import org.eclipse.swt.widgets.Label;
|
|||
import org.eclipse.swt.widgets.Tree;
|
||||
import org.eclipse.swt.widgets.TreeItem;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PreferredToolchainsTab extends AbstractCBuildPropertyTab {
|
||||
|
||||
protected CWizardHandler h_selected = null;
|
||||
|
|
|
@ -25,6 +25,9 @@ import org.eclipse.swt.widgets.Composite;
|
|||
import org.eclipse.swt.widgets.Group;
|
||||
import org.eclipse.swt.widgets.Label;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PropertyMultiCfgTab extends AbstractCPropertyTab {
|
||||
|
||||
private static final int SPACING = 5; // for radio buttons layout
|
||||
|
|
|
@ -22,6 +22,9 @@ import org.eclipse.swt.widgets.Button;
|
|||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.Group;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class PropertyPageDefsTab extends AbstractCPropertyTab {
|
||||
|
||||
private static final int SPACING = 5; // for radio buttons layout
|
||||
|
|
|
@ -20,6 +20,9 @@ import org.eclipse.swt.layout.GridLayout;
|
|||
import org.eclipse.swt.widgets.Button;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public class WizardDefaultsTab extends AbstractCPropertyTab {
|
||||
|
||||
private Button show_sup;
|
||||
|
|
|
@ -31,7 +31,7 @@ public abstract class AbstractToolSettingUI extends FieldEditorPreferencePage {
|
|||
}
|
||||
|
||||
/**
|
||||
* @since 5.0
|
||||
* @since 5.1
|
||||
*/
|
||||
protected AbstractToolSettingUI(IResourceInfo info, int style) {
|
||||
super(style);
|
||||
|
|
|
@ -450,14 +450,14 @@ public class ToolSettingsTab extends AbstractCBuildPropertyTab implements IPrefe
|
|||
}
|
||||
|
||||
/**
|
||||
* @since 5.0
|
||||
* @since 5.1
|
||||
*/
|
||||
protected void addFilter(ViewerFilter filter) {
|
||||
optionList.addFilter(filter);
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 5.0
|
||||
* @since 5.1
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
protected void setOption(IOption op1, IOption op2, IHoldsOptions dst, IResourceInfo res){
|
||||
|
|
|
@ -49,7 +49,11 @@ public class ConvertToMakeWizardPage extends ConvertProjectWizardPage {
|
|||
private static final String WZ_TITLE = "WizardMakeProjectConversion.title"; //$NON-NLS-1$
|
||||
private static final String WZ_DESC = "WizardMakeProjectConversion.description"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
protected CWizardHandler h_selected = null;
|
||||
|
||||
// widgets
|
||||
private Button specifyProjectTypeButton;
|
||||
private Tree tree;
|
||||
|
@ -273,6 +277,9 @@ public class ConvertToMakeWizardPage extends ConvertProjectWizardPage {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public boolean isSetProjectType() {
|
||||
return specifyProjectTypeButton != null && specifyProjectTypeButton.getSelection();
|
||||
}
|
||||
|
|
|
@ -128,6 +128,9 @@ public class MBSWizardHandler extends CWizardHandler {
|
|||
tcs = _tcs;
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public EntryInfo(EntryDescriptor dr, SortedMap<String, IToolChain> _tcs, IWizard w){
|
||||
this(dr, _tcs);
|
||||
wizard = w;
|
||||
|
|
|
@ -34,6 +34,10 @@ import org.eclipse.swt.graphics.Image;
|
|||
public class ManagedBuildWizard extends AbstractCWizard {
|
||||
private static final Image IMG = CPluginImages.get(CPluginImages.IMG_OBJS_CONTAINER);
|
||||
public static final String OTHERS_LABEL = Messages.getString("CNewWizard.0"); //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public static final String EMPTY_PROJECT = Messages.getString("AbstractCWizard.0"); //$NON-NLS-1$
|
||||
/**
|
||||
* Creates and returns an array of items to be displayed
|
||||
|
|
|
@ -19,6 +19,10 @@ import org.eclipse.jface.wizard.IWizard;
|
|||
public class StdBuildWizard extends AbstractCWizard {
|
||||
private static final String NAME = Messages.getString("StdBuildWizard.0"); //$NON-NLS-1$
|
||||
private static final String ID = "org.eclipse.cdt.build.makefile.projectType"; //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* @since 5.1
|
||||
*/
|
||||
public static final String EMPTY_PROJECT = Messages.getString("AbstractCWizard.0"); //$NON-NLS-1$
|
||||
|
||||
public EntryDescriptor[] createItems(boolean supportedOnly, IWizard wizard) {
|
||||
|
|
Loading…
Add table
Reference in a new issue