1
0
Fork 0
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:
Chris Recoskie 2009-04-30 12:04:03 +00:00
parent 0e9d71dcbb
commit ac9667d8bd
22 changed files with 59 additions and 11 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true 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-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin Bundle-Localization: plugin

View file

@ -38,7 +38,7 @@ public interface IBuildResource {
* Returns a URI that can be used by EFS to access the build resource. * Returns a URI that can be used by EFS to access the build resource.
* *
* @return URI * @return URI
* @since 5.1 * @since 6.0
*/ */
URI getLocationURI(); URI getLocationURI();

View file

@ -90,7 +90,7 @@ public interface IBuilder extends IBuildObject, IMakeBuilderInfo {
static final String DEFAULT_TARGET_AUTO = "all"; //$NON-NLS-1$ 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$ 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. * Returns the ICommandLauncher which should be used to launch the builder command.
* *
* @return ICommandLauncher * @return ICommandLauncher
* @since 5.1 * @since 6.0
*/ */
public ICommandLauncher getCommandLauncher(); public ICommandLauncher getCommandLauncher();
} }

View file

@ -2202,7 +2202,7 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator2 {
* Gets a path for a resource by extracting the Path field from its * Gets a path for a resource by extracting the Path field from its
* location URI. * location URI.
* @return IPath * @return IPath
* @since 5.1 * @since 6.0
*/ */
protected IPath getPathForResource(IResource resource) { protected IPath getPathForResource(IResource resource) {
return new Path(resource.getLocationURI().getPath()); return new Path(resource.getLocationURI().getPath());

View file

@ -9,7 +9,7 @@ Bundle-Localization: plugin
Export-Package: org.eclipse.cdt.managedbuilder.gnu.cygwin, Export-Package: org.eclipse.cdt.managedbuilder.gnu.cygwin,
org.eclipse.cdt.managedbuilder.gnu.ui org.eclipse.cdt.managedbuilder.gnu.ui
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)", 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.cdt.core;bundle-version="[5.0.0,6.0.0)",
org.eclipse.core.resources org.eclipse.core.resources
Bundle-ActivationPolicy: lazy Bundle-ActivationPolicy: lazy

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.ui; singleton:=true 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-Activator: org.eclipse.cdt.managedbuilder.ui.properties.ManagedBuilderUIPlugin
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-Localization: plugin 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.ui;bundle-version="[3.2.0,4.0.0)",
org.eclipse.cdt.core;bundle-version="[5.0.0,6.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.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.runtime;bundle-version="[3.2.0,4.0.0)",
org.eclipse.core.variables;bundle-version="[3.1.100,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, org.eclipse.ui.navigator;bundle-version="[3.2.0,4.0.0)";resolution:=optional,

View file

@ -12,5 +12,8 @@ package org.eclipse.cdt.managedbuilder.ui.preferences;
import org.eclipse.cdt.ui.newui.PrefPage_Abstract; import org.eclipse.cdt.ui.newui.PrefPage_Abstract;
/**
* @since 5.1
*/
public class PrefPage_Env extends PrefPage_Abstract { public class PrefPage_Env extends PrefPage_Abstract {
} }

View file

@ -11,5 +11,8 @@
package org.eclipse.cdt.managedbuilder.ui.preferences; package org.eclipse.cdt.managedbuilder.ui.preferences;
/**
* @since 5.1
*/
public class PrefPage_MultiConfig extends PrefPage_PropertyPage { public class PrefPage_MultiConfig extends PrefPage_PropertyPage {
} }

View file

@ -20,6 +20,9 @@ import org.eclipse.cdt.ui.newui.ICPropertyTab;
import org.eclipse.cdt.ui.newui.UIMessages; import org.eclipse.cdt.ui.newui.UIMessages;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
/**
* @since 5.1
*/
public class PrefPage_NewCDTProject extends AbstractPrefPage { public class PrefPage_NewCDTProject extends AbstractPrefPage {
private ICConfigurationDescription prefCfgd = null; private ICConfigurationDescription prefCfgd = null;

View file

@ -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.AbstractPrefPage;
import org.eclipse.cdt.ui.newui.ICPropertyTab; import org.eclipse.cdt.ui.newui.ICPropertyTab;
/**
* @since 5.1
*/
public class PrefPage_NewCDTWizard extends AbstractPrefPage { public class PrefPage_NewCDTWizard extends AbstractPrefPage {
protected String getHeader() { protected String getHeader() {

View file

@ -16,6 +16,9 @@ import org.eclipse.cdt.ui.newui.AbstractPrefPage;
import org.eclipse.cdt.ui.newui.ICPropertyTab; import org.eclipse.cdt.ui.newui.ICPropertyTab;
import org.eclipse.cdt.ui.newui.UIMessages; import org.eclipse.cdt.ui.newui.UIMessages;
/**
* @since 5.1
*/
public class PrefPage_PropertyPage extends AbstractPrefPage { public class PrefPage_PropertyPage extends AbstractPrefPage {
protected String getHeader() { protected String getHeader() {

View file

@ -12,6 +12,9 @@ package org.eclipse.cdt.managedbuilder.ui.preferences;
import org.eclipse.cdt.ui.newui.PrefPage_Abstract; import org.eclipse.cdt.ui.newui.PrefPage_Abstract;
/**
* @since 5.1
*/
public class PrefPage_Vars extends PrefPage_Abstract { public class PrefPage_Vars extends PrefPage_Abstract {
} }

View file

@ -37,6 +37,9 @@ import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.Tree;
import org.eclipse.swt.widgets.TreeItem; import org.eclipse.swt.widgets.TreeItem;
/**
* @since 5.1
*/
public class PreferredToolchainsTab extends AbstractCBuildPropertyTab { public class PreferredToolchainsTab extends AbstractCBuildPropertyTab {
protected CWizardHandler h_selected = null; protected CWizardHandler h_selected = null;

View file

@ -25,6 +25,9 @@ import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group; import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Label;
/**
* @since 5.1
*/
public class PropertyMultiCfgTab extends AbstractCPropertyTab { public class PropertyMultiCfgTab extends AbstractCPropertyTab {
private static final int SPACING = 5; // for radio buttons layout private static final int SPACING = 5; // for radio buttons layout

View file

@ -22,6 +22,9 @@ import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group; import org.eclipse.swt.widgets.Group;
/**
* @since 5.1
*/
public class PropertyPageDefsTab extends AbstractCPropertyTab { public class PropertyPageDefsTab extends AbstractCPropertyTab {
private static final int SPACING = 5; // for radio buttons layout private static final int SPACING = 5; // for radio buttons layout

View file

@ -20,6 +20,9 @@ import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Composite;
/**
* @since 5.1
*/
public class WizardDefaultsTab extends AbstractCPropertyTab { public class WizardDefaultsTab extends AbstractCPropertyTab {
private Button show_sup; private Button show_sup;

View file

@ -31,7 +31,7 @@ public abstract class AbstractToolSettingUI extends FieldEditorPreferencePage {
} }
/** /**
* @since 5.0 * @since 5.1
*/ */
protected AbstractToolSettingUI(IResourceInfo info, int style) { protected AbstractToolSettingUI(IResourceInfo info, int style) {
super(style); super(style);

View file

@ -450,14 +450,14 @@ public class ToolSettingsTab extends AbstractCBuildPropertyTab implements IPrefe
} }
/** /**
* @since 5.0 * @since 5.1
*/ */
protected void addFilter(ViewerFilter filter) { protected void addFilter(ViewerFilter filter) {
optionList.addFilter(filter); optionList.addFilter(filter);
} }
/** /**
* @since 5.0 * @since 5.1
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
protected void setOption(IOption op1, IOption op2, IHoldsOptions dst, IResourceInfo res){ protected void setOption(IOption op1, IOption op2, IHoldsOptions dst, IResourceInfo res){

View file

@ -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_TITLE = "WizardMakeProjectConversion.title"; //$NON-NLS-1$
private static final String WZ_DESC = "WizardMakeProjectConversion.description"; //$NON-NLS-1$ private static final String WZ_DESC = "WizardMakeProjectConversion.description"; //$NON-NLS-1$
/**
* @since 5.1
*/
protected CWizardHandler h_selected = null; protected CWizardHandler h_selected = null;
// widgets // widgets
private Button specifyProjectTypeButton; private Button specifyProjectTypeButton;
private Tree tree; private Tree tree;
@ -273,6 +277,9 @@ public class ConvertToMakeWizardPage extends ConvertProjectWizardPage {
} }
} }
/**
* @since 5.1
*/
public boolean isSetProjectType() { public boolean isSetProjectType() {
return specifyProjectTypeButton != null && specifyProjectTypeButton.getSelection(); return specifyProjectTypeButton != null && specifyProjectTypeButton.getSelection();
} }

View file

@ -128,6 +128,9 @@ public class MBSWizardHandler extends CWizardHandler {
tcs = _tcs; tcs = _tcs;
} }
/**
* @since 5.1
*/
public EntryInfo(EntryDescriptor dr, SortedMap<String, IToolChain> _tcs, IWizard w){ public EntryInfo(EntryDescriptor dr, SortedMap<String, IToolChain> _tcs, IWizard w){
this(dr, _tcs); this(dr, _tcs);
wizard = w; wizard = w;

View file

@ -34,6 +34,10 @@ import org.eclipse.swt.graphics.Image;
public class ManagedBuildWizard extends AbstractCWizard { public class ManagedBuildWizard extends AbstractCWizard {
private static final Image IMG = CPluginImages.get(CPluginImages.IMG_OBJS_CONTAINER); private static final Image IMG = CPluginImages.get(CPluginImages.IMG_OBJS_CONTAINER);
public static final String OTHERS_LABEL = Messages.getString("CNewWizard.0"); //$NON-NLS-1$ 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$ public static final String EMPTY_PROJECT = Messages.getString("AbstractCWizard.0"); //$NON-NLS-1$
/** /**
* Creates and returns an array of items to be displayed * Creates and returns an array of items to be displayed

View file

@ -19,6 +19,10 @@ import org.eclipse.jface.wizard.IWizard;
public class StdBuildWizard extends AbstractCWizard { public class StdBuildWizard extends AbstractCWizard {
private static final String NAME = Messages.getString("StdBuildWizard.0"); //$NON-NLS-1$ 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$ 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 static final String EMPTY_PROJECT = Messages.getString("AbstractCWizard.0"); //$NON-NLS-1$
public EntryDescriptor[] createItems(boolean supportedOnly, IWizard wizard) { public EntryDescriptor[] createItems(boolean supportedOnly, IWizard wizard) {