This commit is contained in:
Eric Milles 2020-10-13 21:34:47 -05:00
Родитель 25df70d002
Коммит fd7a36dce2
172 изменённых файлов: 922 добавлений и 866 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -4,6 +4,7 @@
# Eclipse output folders for all projects under source/
bin
bin-test
# Maven builds
target
target

Просмотреть файл

@ -1,5 +1,5 @@
Feature-Vendor = Microsoft Corporation
Feature-Copyright = Copyright (c) 2017, Microsoft Corporation and others. All rights reserved.
Feature-Copyright = Copyright (c) 2020, Microsoft Corporation and others. All rights reserved.
Feature-License-Url = license.html
Feature-License-Text = MICROSOFT SOFTWARE LICENSE TERMS\n\
\n\

Просмотреть файл

@ -156,7 +156,7 @@
windowtitle="Team Foundation Server SDK for Java"
bottom="© 2017 Microsoft. All rights reserved."
useexternalfile="true"
source="1.5"
source="1.6"
additionalparam="-J-DTaglets.NoDefaultConfiguration=true">
<!-- maintain these selections in accordance with desired SDK scope. Wildcards in package names may ONLY go at the end. -->

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,18 +5,14 @@ Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.build; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.checkinpolicies.build.TFSBuildCheckinPolicyPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.build.jar
Require-Bundle: com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common.ui,
org.eclipse.ui
Import-Package: org.eclipse.ui.part
Export-Package: com.microsoft.tfs.checkinpolicies.build,
com.microsoft.tfs.checkinpolicies.build.settings,
com.microsoft.tfs.checkinpolicies.build.ui
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.jface,
org.eclipse.ui,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.checkinpolicies,
org.eclipse.ui.ide
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.build.jar

Просмотреть файл

@ -1,6 +1,8 @@
bin.includes = META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.build.jar,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.checkinpolicies.build.jar
output.com.microsoft.tfs.checkinpolicies.build.jar = bin/
source.com.microsoft.tfs.checkinpolicies.build.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -29,7 +29,6 @@ import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.UIPlugin;
import org.eclipse.ui.part.FileEditorInput;
import com.microsoft.tfs.checkinpolicies.build.BuildPolicy;
@ -282,7 +281,7 @@ public class BuildPolicyUI extends BuildPolicy {
try {
page.openEditor(editorInput, editor.getId());
} catch (final PartInitException e) {
UIPlugin.getDefault().getLog().log(
TFSBuildCheckinPolicyPlugin.getDefault().getLog().log(
new Status(
Status.WARNING,
TFSBuildCheckinPolicyPlugin.PLUGIN_ID,
@ -394,7 +393,7 @@ public class BuildPolicyUI extends BuildPolicy {
e.getLocalizedMessage()),
this));
UIPlugin.getDefault().getLog().log(
TFSBuildCheckinPolicyPlugin.getDefault().getLog().log(
new Status(
Status.WARNING,
TFSBuildCheckinPolicyPlugin.PLUGIN_ID,

Просмотреть файл

@ -23,7 +23,6 @@ import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.internal.UIPlugin;
import com.microsoft.tfs.checkinpolicies.build.Messages;
import com.microsoft.tfs.checkinpolicies.build.TFSBuildCheckinPolicyPlugin;
@ -100,7 +99,7 @@ public class MarkerBrowseDialog extends BaseDialog {
markerList.add(type);
}
} catch (final CoreException e) {
UIPlugin.getDefault().getLog().log(
TFSBuildCheckinPolicyPlugin.getDefault().getLog().log(
new Status(
Status.ERROR,
TFSBuildCheckinPolicyPlugin.PLUGIN_ID,

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,10 +4,9 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.checkforcomments; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Export-Package: com.microsoft.tfs.checkinpolicies.checkforcomments
Require-Bundle: org.eclipse.core.runtime,
com.microsoft.tfs.checkinpolicies
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.checkforcomments.jar
Require-Bundle: com.microsoft.tfs.checkinpolicies
Export-Package: com.microsoft.tfs.checkinpolicies.checkforcomments

Просмотреть файл

@ -1,6 +1,8 @@
bin.includes = META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.checkforcomments.jar,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.checkinpolicies.checkforcomments.jar
output.com.microsoft.tfs.checkinpolicies.checkforcomments.jar = bin/
source.com.microsoft.tfs.checkinpolicies.checkforcomments.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,13 +4,11 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.forbiddenpatterns; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Export-Package: com.microsoft.tfs.checkinpolicies.forbiddenpatterns,
com.microsoft.tfs.checkinpolicies.forbiddenpatterns.ui
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui,
com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common.ui
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.forbiddenpatterns.jar
Require-Bundle: com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common.ui
Export-Package: com.microsoft.tfs.checkinpolicies.forbiddenpatterns,
com.microsoft.tfs.checkinpolicies.forbiddenpatterns.ui

Просмотреть файл

@ -1,5 +1,8 @@
bin.includes = META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.forbiddenpatterns.jar,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.checkinpolicies.forbiddenpatterns.jar
output.com.microsoft.tfs.checkinpolicies.forbiddenpatterns.jar = bin/
source.com.microsoft.tfs.checkinpolicies.forbiddenpatterns.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,11 +4,11 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.workitempolicy; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.workitempolicy.jar
Require-Bundle: com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common.ui
Export-Package: com.microsoft.tfs.checkinpolicies.workitempolicy,
com.microsoft.tfs.checkinpolicies.workitempolicy.ui

Просмотреть файл

@ -1,5 +1,8 @@
bin.includes = META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.workitempolicy.jar,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.checkinpolicies.workitempolicy.jar
output.com.microsoft.tfs.checkinpolicies.workitempolicy.jar = bin/
source.com.microsoft.tfs.checkinpolicies.workitempolicy.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,14 +4,11 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies.workitemquerypolicy; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Export-Package: com.microsoft.tfs.checkinpolicies.workitemquerypolicy,
com.microsoft.tfs.checkinpolicies.workitemquerypolicy.ui
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui,
com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.workitemquerypolicy.jar
Require-Bundle: com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.client.common.ui
Export-Package: com.microsoft.tfs.checkinpolicies.workitemquerypolicy,
com.microsoft.tfs.checkinpolicies.workitemquerypolicy.ui

Просмотреть файл

@ -1,5 +1,8 @@
bin.includes = META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.workitemquerypolicy.jar,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.checkinpolicies.workitemquerypolicy.jar
output.com.microsoft.tfs.checkinpolicies.workitemquerypolicy.jar = bin/
source.com.microsoft.tfs.checkinpolicies.workitemquerypolicy.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -8,7 +8,6 @@ import java.text.MessageFormat;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.internal.UIPlugin;
import com.microsoft.tfs.checkinpolicies.workitemquerypolicy.Activator;
import com.microsoft.tfs.checkinpolicies.workitemquerypolicy.Messages;
@ -49,7 +48,7 @@ public class WorkItemQueryPolicyUI extends WorkItemQueryPolicy {
shell,
Messages.getString("WorkItemQueryPolicyUI.ErrorMessageTitle"), //$NON-NLS-1$
message);
UIPlugin.getDefault().getLog().log(new Status(Status.WARNING, Activator.PLUGIN_ID, 0, message, null));
Activator.getDefault().getLog().log(new Status(Status.WARNING, Activator.PLUGIN_ID, 0, message, null));
return false;
}

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,12 +5,11 @@ Bundle-SymbolicName: com.microsoft.tfs.checkinpolicies; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.checkinpolicies.TFSCheckinPoliciesPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Export-Package: com.microsoft.tfs.checkinpolicies
Require-Bundle: org.eclipse.core.runtime,
com.microsoft.tfs.util;visibility:=reexport,
com.microsoft.tfs.core;visibility:=reexport,
com.microsoft.tfs.logging;visibility:=reexport
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.checkinpolicies.jar
Require-Bundle: com.microsoft.tfs.core;visibility:=reexport
Import-Package: org.eclipse.core.runtime,
org.osgi.framework
Export-Package: com.microsoft.tfs.checkinpolicies

Просмотреть файл

@ -1,6 +1,9 @@
bin.includes = META-INF/,\
bin.includes = schema/,\
META-INF/,\
plugin.xml,\
com.microsoft.tfs.checkinpolicies.jar,\
plugin.properties,\
schema/
com.microsoft.tfs.checkinpolicies.jar
output.com.microsoft.tfs.checkinpolicies.jar = bin/
source.com.microsoft.tfs.checkinpolicies.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -1 +1,3 @@
bin.includes = feature.xml
bin.includes = feature.properties,\
feature.xml,\
*.html

Просмотреть файл

@ -1,7 +1,7 @@
Feature-Name = Team Explorer Everywhere
Feature-Vendor = Microsoft Corporation
Feature-Description = Tools to work with Microsoft Visual Studio Team Foundation Server and Visual Studio Team Services. Supports Team Foundation Server 2012, 2013, 2015, 2017 and Visual Studio Team Services.
Feature-Copyright = Copyright (c) 2017, Microsoft Corporation and others. All rights reserved.
Feature-Copyright = Copyright (c) 2020, Microsoft Corporation and others. All rights reserved.
Feature-License-Url = license.html
Feature-License-Text = MICROSOFT SOFTWARE LICENSE TERMS\n\
\n\

Просмотреть файл

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.util"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.logging"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.jni"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.console"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core.httpclient"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core.ws.runtime"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core.ws"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.client.common"/>
<classpathentry kind="output" path="bin"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
</classpath>

Просмотреть файл

@ -3,7 +3,6 @@
<name>com.microsoft.tfs.client.clc</name>
<comment></comment>
<projects>
<project>com.microsoft.tfs.core</project>
</projects>
<buildSpec>
<buildCommand>
@ -28,6 +27,7 @@
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>edu.umd.cs.findbugs.plugin.eclipse.findbugsNature</nature>
</natures>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -11,7 +11,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
org.eclipse.jdt.core.compiler.problem.deprecation=warning
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,14 +4,16 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.client.clc
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.clc.jar
Require-Bundle: com.microsoft.tfs.console,
com.microsoft.tfs.client.common,
com.microsoft.tfs.checkinpolicies,
com.microsoft.tfs.checkinpolicies.build,
com.microsoft.tfs.checkinpolicies.checkforcomments,
com.microsoft.tfs.checkinpolicies.forbiddenpatterns,
com.microsoft.tfs.checkinpolicies.workitempolicy,
com.microsoft.tfs.checkinpolicies.workitemquerypolicy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.clc.jar
Export-Package: com.microsoft.tfs.client.clc

Просмотреть файл

@ -1,4 +1,7 @@
bin.includes = META-INF/,\
com.microsoft.tfs.client.clc.jar,\
plugin.properties
source.com.microsoft.tfs.client.clc.jar = src/
plugin.properties,\
com.microsoft.tfs.client.clc.jar
output.com.microsoft.tfs.client.clc.jar = bin/
source.com.microsoft.tfs.client.clc.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,6 +4,7 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.client.common.pid
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.pid.jar

Просмотреть файл

@ -1,4 +1,7 @@
bin.includes = META-INF/,\
com.microsoft.tfs.client.common.pid.jar,\
plugin.properties
source.com.microsoft.tfs.client.common.pid.jar = src/
plugin.properties,\
com.microsoft.tfs.client.common.pid.jar
output.com.microsoft.tfs.client.common.pid.jar = bin/
source.com.microsoft.tfs.client.common.pid.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -63,7 +63,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -4,18 +4,14 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.teambuild.egit;singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.eclipse.jgit;resolution:=optional,
Require-Bundle: com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.teambuild,
org.eclipse.egit.core;resolution:=optional,
org.eclipse.egit.ui;resolution:=optional,
org.apache.commons.logging,
org.eclipse.core.runtime,
com.microsoft.tfs.client.common,
org.eclipse.core.resources,
org.eclipse.jface,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.teambuild
org.eclipse.jgit;resolution:=optional
Export-Package: com.microsoft.tfs.client.common.ui.teambuild.egit,
com.microsoft.tfs.client.common.ui.teambuild.egit.dialogs,
com.microsoft.tfs.client.common.ui.teambuild.egit.repositories,

Просмотреть файл

@ -1,5 +1,7 @@
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
bin.includes = .,\
META-INF/,\
plugin.properties
output.. = bin/
source.. = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -11,7 +11,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
org.eclipse.jdt.core.compiler.problem.deprecation=warning
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,7 +5,17 @@ Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.teambuild; singleton:=tr
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.client.common.ui.teambuild.TFSTeamBuildPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.ui.teambuild.jar
Require-Bundle: com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
org.eclipse.core.runtime,
org.eclipse.ui
Import-Package: com.microsoft.tfs.client.common.ui.vcexplorer.versioncontrol,
org.eclipse.ui.forms.events,
org.eclipse.ui.forms.widgets
Export-Package: com.microsoft.tfs.client.common.ui.teambuild,
com.microsoft.tfs.client.common.ui.teambuild.actions,
com.microsoft.tfs.client.common.ui.teambuild.commands,
@ -20,18 +30,3 @@ Export-Package: com.microsoft.tfs.client.common.ui.teambuild,
com.microsoft.tfs.client.common.ui.teambuild.wizards,
com.microsoft.tfs.client.common.ui.teambuild.wizards.v1,
com.microsoft.tfs.client.common.ui.teambuild.wizards.v1.ant
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
com.microsoft.tfs.logging,
com.microsoft.tfs.util,
com.microsoft.tfs.core.ws.runtime,
com.microsoft.tfs.core.ws,
com.microsoft.tfs.core,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.vcexplorer,
org.eclipse.ui.forms
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.ui.teambuild.jar
Import-Package: org.eclipse.core.resources

Просмотреть файл

@ -1,8 +1,11 @@
bin.includes = META-INF/,\
plugin.xml,\
icons/,\
bin.includes = icons/,\
schema/,\
META-INF/,\
templates/,\
plugin.xml,\
plugin.properties,\
com.microsoft.tfs.client.common.ui.teambuild.jar
output.com.microsoft.tfs.client.common.ui.teambuild.jar = bin/
source.com.microsoft.tfs.client.common.ui.teambuild.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,20 +5,13 @@ Bundle-SymbolicName: com.microsoft.tfs.client.common.ui.vcexplorer; singleton:=t
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.client.common.ui.vcexplorer.TFSVersionControlExplorerPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: com.microsoft.tfs.client.common.ui,
org.eclipse.ui
Export-Package: com.microsoft.tfs.client.common.ui.vcexplorer,
com.microsoft.tfs.client.common.ui.vcexplorer.teamexplorer,
com.microsoft.tfs.client.common.ui.vcexplorer.versioncontrol,
com.microsoft.tfs.client.common.ui.vcexplorer.versioncontrol.actions,
com.microsoft.tfs.client.common.ui.vcexplorer.versioncontrol.actions.helper
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.compare,
com.microsoft.tfs.core.ws.runtime,
com.microsoft.tfs.core.ws,
com.microsoft.tfs.core,
com.microsoft.tfs.util,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6

Просмотреть файл

@ -1,7 +1,9 @@
source.. = src/
output.. = bin/
bin.includes = .,\
META-INF/,\
icons/,\
META-INF/,\
plugin.xml,\
plugin.properties
output.. = bin/
source.. = src/
javacProjectSettings = true

Просмотреть файл

@ -1,10 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -3,7 +3,6 @@
<name>com.microsoft.tfs.client.common.ui</name>
<comment></comment>
<projects>
<project>com.microsoft.tfs.client.common</project>
</projects>
<buildSpec>
<buildCommand>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -11,7 +11,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
org.eclipse.jdt.core.compiler.problem.deprecation=warning
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,8 +5,26 @@ Bundle-SymbolicName: com.microsoft.tfs.client.common.ui; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.client.common.ui.TFSCommonUIClientPlugin
Bundle-Vendor: %Bundle-Vendor
Eclipse-LazyStart: true
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.ui.jar
Require-Bundle: com.microsoft.tfs.client.common;visibility:=reexport,
org.eclipse.compare;visibility:=reexport,
org.eclipse.core.expressions,
org.eclipse.core.resources;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport,
org.eclipse.jface;visibility:=reexport,
org.eclipse.jface.text,
org.eclipse.team.core,
org.eclipse.ui,
org.eclipse.ui.console,
org.eclipse.ui.editors,
org.eclipse.ui.forms,
org.eclipse.ui.ide,
org.eclipse.ui.workbench.texteditor
Import-Package: com.microsoft.tfs.checkinpolicies,
org.eclipse.core.net.proxy;resolution:=optional
Export-Package: com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.adapters,
com.microsoft.tfs.client.common.ui.autoconnect,
@ -135,26 +153,3 @@ Export-Package: com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.wizard.eula,
com.microsoft.tfs.client.common.ui.wizard.merge,
com.microsoft.tfs.client.common.ui.wizard.teamprojectwizard
Require-Bundle: org.eclipse.ui,
org.eclipse.ui.ide,
org.eclipse.ui.console,
org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.core.expressions,
com.microsoft.tfs.core.ws.runtime,
com.microsoft.tfs.core.ws;visibility:=reexport,
com.microsoft.tfs.core,
com.microsoft.tfs.util,
org.eclipse.compare,
com.microsoft.tfs.logging,
com.microsoft.tfs.client.common,
com.microsoft.tfs.checkinpolicies,
org.eclipse.core.net;resolution:=optional,
com.microsoft.tfs.core.httpclient,
org.eclipse.jface.text,
org.eclipse.ui.editors,
org.eclipse.ui.workbench.texteditor,
org.eclipse.ui.forms
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.ui.jar
Import-Package: com.microsoft.tfs.client.eclipse

Просмотреть файл

@ -1,8 +1,11 @@
bin.includes = META-INF/,\
plugin.xml,\
bin.includes = icons/,\
images/,\
icons/,\
com.microsoft.tfs.client.common.ui.jar,\
schema/,\
META-INF/,\
plugin.xml,\
plugin.properties,\
schema/
com.microsoft.tfs.client.common.ui.jar
output.com.microsoft.tfs.client.common.ui.jar = bin/
source.com.microsoft.tfs.client.common.ui.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -376,7 +376,6 @@ public class WorkItemsCheckinControl extends AbstractCheckinSubControl {
}
@Override
@SuppressWarnings("restriction")
protected IStatus doRun(final IProgressMonitor progressMonitor) throws Exception {
progressMonitor.beginTask(Messages.getString("WorkItemsCheckinControl.QueryingItemsProgressText"), 1); //$NON-NLS-1$
final QueryWorkItemsCommand subCommand = new QueryWorkItemsCommand(query);

Просмотреть файл

@ -1,13 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry exported="true" kind="lib" path="libs/jackson-core-2.4.1/jackson-annotations-2.4.1.jar"/>
<classpathentry exported="true" kind="lib" path="libs/jackson-core-2.4.1/jackson-core-2.4.1.jar"/>
<classpathentry exported="true" kind="lib" path="libs/jackson-core-2.4.1/jackson-databind-2.4.1.jar"/>
<classpathentry exported="true" kind="lib" path="libs/com.jcraft.jsch_0.1.44.v201101211721.jar"/>
<classpathentry kind="lib" path="libs/com.jcraft.jsch_0.1.44.v201101211721.jar" exported="true"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -11,7 +11,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
org.eclipse.jdt.core.compiler.problem.deprecation=warning
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,34 +5,16 @@ Bundle-SymbolicName: com.microsoft.tfs.client.common; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.client.common.TFSCommonClientPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Export-Package: com.fasterxml.jackson.annotation,
com.fasterxml.jackson.core;
uses:="com.fasterxml.jackson.core.io,
com.fasterxml.jackson.core.util,
com.fasterxml.jackson.core.sym,
com.fasterxml.jackson.core.type,
com.fasterxml.jackson.core.format",
com.fasterxml.jackson.databind;
uses:="com.fasterxml.jackson.databind.jsonFormatVisitors,
com.fasterxml.jackson.databind.deser,
com.fasterxml.jackson.databind.deser.impl,
com.fasterxml.jackson.databind.introspect,
com.fasterxml.jackson.databind.type,
com.fasterxml.jackson.databind.util,
com.fasterxml.jackson.databind.jsonschema,
com.fasterxml.jackson.annotation,
com.fasterxml.jackson.core.format,
com.fasterxml.jackson.databind.jsontype.impl,
com.fasterxml.jackson.databind.node,
com.fasterxml.jackson.databind.jsontype,
com.fasterxml.jackson.core.type,
com.fasterxml.jackson.core,
com.fasterxml.jackson.databind.ser,
com.fasterxml.jackson.databind.ser.impl,
com.fasterxml.jackson.databind.annotation,
com.fasterxml.jackson.databind.cfg",
com.microsoft.tfs.client.common;uses:="com.microsoft.tfs.util",
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.jar,
libs/com.jcraft.jsch_0.1.44.v201101211721.jar
Require-Bundle: com.microsoft.tfs.core;visibility:=reexport,
org.eclipse.core.runtime
Import-Package: org.eclipse.core.resources,
org.eclipse.equinox.security.storage
Export-Package: com.microsoft.tfs.client.common;uses:="com.microsoft.tfs.util",
com.microsoft.tfs.client.common.autoconnect;uses:="com.microsoft.tfs.client.common.repository,com.microsoft.tfs.client.common.server",
com.microsoft.tfs.client.common.catalog;uses:="com.microsoft.tfs.util",
com.microsoft.tfs.client.common.codemarker,
@ -99,7 +81,7 @@ Export-Package: com.fasterxml.jackson.annotation,
com.microsoft.tfs.client.common.framework.command;uses:="org.eclipse.core.runtime,org.eclipse.core.runtime.jobs,com.microsoft.tfs.client.common.framework.command.exception",
com.microsoft.tfs.client.common.framework.command.exception;uses:="org.eclipse.core.runtime,com.microsoft.tfs.client.common.framework.command",
com.microsoft.tfs.client.common.framework.command.helpers;uses:="org.eclipse.core.runtime,com.microsoft.tfs.client.common.framework.command",
com.microsoft.tfs.client.common.framework.resources;uses:="junit.framework",
com.microsoft.tfs.client.common.framework.resources,
com.microsoft.tfs.client.common.framework.resources.command;
uses:="org.eclipse.core.runtime,
org.eclipse.core.runtime.jobs,
@ -113,7 +95,7 @@ Export-Package: com.fasterxml.jackson.annotation,
com.microsoft.tfs.client.common.git.commands,
com.microsoft.tfs.client.common.git.json;uses:="com.fasterxml.jackson.databind",
com.microsoft.tfs.client.common.git.utils,
com.microsoft.tfs.client.common.item;uses:="junit.framework",
com.microsoft.tfs.client.common.item,
com.microsoft.tfs.client.common.license,
com.microsoft.tfs.client.common.logging;uses:="org.apache.log4j,com.microsoft.tfs.core.persistence",
com.microsoft.tfs.client.common.prefs;uses:="org.eclipse.core.runtime.preferences",
@ -140,7 +122,7 @@ Export-Package: com.fasterxml.jackson.annotation,
com.microsoft.tfs.client.common.wit",
com.microsoft.tfs.client.common.server.cache.buildstatus;uses:="com.microsoft.tfs.client.common.codemarker,com.microsoft.tfs.core,com.microsoft.tfs.core.clients.build",
com.microsoft.tfs.client.common.server.cache.project;uses:="com.microsoft.tfs.core,com.microsoft.tfs.core.clients.teamsettings,com.microsoft.tfs.core.clients.commonstructure",
com.microsoft.tfs.client.common.util;uses:="junit.framework",
com.microsoft.tfs.client.common.util,
com.microsoft.tfs.client.common.vc;
uses:="com.microsoft.tfs.core.clients.versioncontrol.specs,
com.microsoft.tfs.core.clients.versioncontrol.soapextensions,
@ -153,20 +135,3 @@ Export-Package: com.fasterxml.jackson.annotation,
com.microsoft.tfs.core.clients.workitem.queryhierarchy,
com.microsoft.tfs.util,
com.microsoft.tfs.core.clients.workitem.query"
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
com.microsoft.tfs.logging;visibility:=reexport,
com.microsoft.tfs.util;visibility:=reexport,
com.microsoft.tfs.jni;visibility:=reexport,
com.microsoft.tfs.core.httpclient;visibility:=reexport,
com.microsoft.tfs.core;visibility:=reexport,
com.microsoft.tfs.core.ws.runtime;visibility:=reexport,
com.microsoft.tfs.core.ws;visibility:=reexport
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ClassPath: com.microsoft.tfs.client.common.jar,
libs/com.jcraft.jsch_0.1.44.v201101211721.jar,
libs/jackson-core-2.4.1/jackson-annotations-2.4.1.jar,
libs/jackson-core-2.4.1/jackson-core-2.4.1.jar,
libs/jackson-core-2.4.1/jackson-databind-2.4.1.jar
Import-Package: org.eclipse.equinox.security.storage

Просмотреть файл

@ -1,10 +1,10 @@
bin.includes = META-INF/,\
bin.includes = schema/,\
META-INF/,\
plugin.xml,\
com.microsoft.tfs.client.common.jar,\
plugin.properties,\
schema/,\
libs/com.jcraft.jsch_0.1.44.v201101211721.jar,\
libs/jackson-core-2.4.1/jackson-core-2.4.1.jar,\
libs/jackson-core-2.4.1/jackson-databind-2.4.1.jar,\
libs/jackson-core-2.4.1/jackson-annotations-2.4.1.jar
com.microsoft.tfs.client.common.jar,\
libs/com.jcraft.jsch_0.1.44.v201101211721.jar
output.com.microsoft.tfs.client.common.jar = bin/
source.com.microsoft.tfs.client.common.jar = src/
javacProjectSettings = true

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Просмотреть файл

@ -5,7 +5,6 @@ package com.microsoft.tfs.client.common.framework.resources.command;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eclipse.core.internal.resources.Workspace;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
@ -185,7 +184,7 @@ public class WorkspaceCommand extends CancellableCommand implements CommandWrapp
* {@link IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int, IProgressMonitor)}
* , which opens a new sub-monitor on the given {@link IProgressMonitor}, in
* order to display its "Refreshing /some/path" messages. Howerver, the
* {@link Workspace} implementation always forces the
* {@link IWorkspace} implementation always forces the
* {@link SubProgressMonitor#PREPEND_MAIN_LABEL_TO_SUBTASK} style bit, which
* prepends any existing label the task monitor had (like "Downloading") to
* the refresh sublabel, resulting in something ugly like

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -1,7 +1,5 @@
bin.includes = feature.xml,\
feature.properties,\
about.html,\
license.html,\
bin.includes = feature.properties,\
loc.properties,\
ThirdPartyNotices.html
qualifier=context
feature.xml,\
*.html
qualifier = context

Просмотреть файл

@ -1,7 +1,7 @@
Feature-Name = Team Explorer Everywhere
Feature-Vendor = Microsoft Corporation
Feature-Description = Tools to work with Microsoft Visual Studio Team Foundation Server and Visual Studio Team Services. Supports Team Foundation Server 2012, 2013, 2015, 2017 and Visual Studio Team Services.
Feature-Copyright = Copyright (c) 2017, Microsoft Corporation and others. All rights reserved.
Feature-Copyright = Copyright (c) 2020, Microsoft Corporation and others. All rights reserved.
Feature-License-Url = license.html
Feature-License-Text = MICROSOFT SOFTWARE LICENSE TERMS\n\
\n\

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -4,5 +4,5 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.help; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Eclipse-LazyStart: true

Просмотреть файл

@ -1,13 +1,11 @@
output.. = bin/
bin.includes = .,\
content/,\
META-INF/,\
plugin.xml,\
toc.xml,\
contexts.xml,\
license.html,\
notice.html,\
content/,\
plugin.properties,\
ThirdPartyNotices.html
plugin.xml,\
ThirdPartyNotices.html,\
toc.xml
bin.excludes = content/InstallTEE_LP.htm,\
content/InstallTEE.htm

Просмотреть файл

@ -1,10 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry combineaccessrules="false" kind="src" path="/com.microsoft.tfs.core"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -67,7 +67,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -1,2 +0,0 @@
eclipse.preferences.version=1
org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false

Просмотреть файл

@ -4,27 +4,20 @@ Bundle-Name: %Bundle-Name
Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.ui.egit;singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.eclipse.jgit;resolution:=optional,
Bundle-ClassPath: com.microsoft.tfs.client.eclipse.ui.egit.jar
Require-Bundle: com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.eclipse.ui,
org.eclipse.egit.core;resolution:=optional,
org.eclipse.egit.ui;resolution:=optional,
com.microsoft.tfs.checkinpolicies,
org.eclipse.core.resources,
org.eclipse.core.runtime,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.eclipse,
com.microsoft.tfs.client.eclipse.ui,
org.eclipse.jgit;resolution:=optional,
org.eclipse.ui,
org.eclipse.ui.navigator,
org.eclipse.core.variables,
org.eclipse.swt,
com.microsoft.tfs.core
org.eclipse.ui.navigator;resolution:=optional
Import-Package: org.eclipse.core.variables,
org.eclipse.ui.forms.widgets
Export-Package: com.microsoft.tfs.client.eclipse.ui.egit,
com.microsoft.tfs.client.eclipse.ui.egit.importwizard,
com.microsoft.tfs.client.eclipse.ui.egit.protocolhandler,
com.microsoft.tfs.client.eclipse.ui.egit.teamexplorer
Import-Package: org.eclipse.ui.forms.events,
org.eclipse.ui.forms.widgets
Bundle-ClassPath: com.microsoft.tfs.client.eclipse.ui.egit.jar

Просмотреть файл

@ -1,6 +1,9 @@
source.com.microsoft.tfs.client.eclipse.ui.egit.jar = src/
bin.includes = META-INF/,\
com.microsoft.tfs.client.eclipse.ui.egit.jar,\
bin.includes = images/,\
META-INF/,\
plugin.xml,\
images/,\
plugin.properties
plugin.properties,\
com.microsoft.tfs.client.eclipse.ui.egit.jar
output.com.microsoft.tfs.client.eclipse.ui.egit.jar = bin/
source.com.microsoft.tfs.client.eclipse.ui.egit.jar = src/
javacProjectSettings = true

Просмотреть файл

@ -25,7 +25,6 @@ import com.microsoft.tfs.client.common.TFSCommonClientPlugin;
import com.microsoft.tfs.client.common.commands.TFSCommand;
import com.microsoft.tfs.client.common.git.EclipseProjectInfo;
import com.microsoft.tfs.client.common.ui.helpers.WorkingSetHelper;
import com.microsoft.tfs.client.eclipse.TFSEclipseClientPlugin;
import com.microsoft.tfs.client.eclipse.ui.egit.Messages;
import com.microsoft.tfs.client.eclipse.ui.wizard.importwizard.support.ImportEclipseProject;
import com.microsoft.tfs.core.clients.versioncontrol.path.LocalPath;
@ -130,7 +129,6 @@ public class ImportEclipseProjectsCommand extends TFSCommand {
} catch (final CanceledException e) {
return Status.CANCEL_STATUS;
} catch (final Exception e) {
TFSEclipseClientPlugin.getDefault().getConsole().printErrorMessage(e.getLocalizedMessage());
logger.error(e.getLocalizedMessage(), e);
status.add(
new Status(IStatus.WARNING, TFSCommonClientPlugin.PLUGIN_ID, 0, e.getLocalizedMessage(), null));

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Просмотреть файл

@ -11,7 +11,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
org.eclipse.jdt.core.compiler.problem.deadCode=warning
org.eclipse.jdt.core.compiler.problem.deprecation=warning
org.eclipse.jdt.core.compiler.problem.deprecation=ignore
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
@ -43,7 +43,7 @@ org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
org.eclipse.jdt.core.compiler.problem.rawTypeReference=ignore
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
@ -52,7 +52,7 @@ org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=ignore
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
@ -62,7 +62,7 @@ org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
org.eclipse.jdt.core.compiler.problem.unusedImport=error
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore

Просмотреть файл

@ -5,7 +5,20 @@ Bundle-SymbolicName: com.microsoft.tfs.client.eclipse.ui; singleton:=true
Bundle-Version: 14.134.0.qualifier
Bundle-Activator: com.microsoft.tfs.client.eclipse.ui.TFSEclipseClientUIPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.vcexplorer,
com.microsoft.tfs.client.eclipse,
org.eclipse.core.filesystem,
org.eclipse.core.resources,
org.eclipse.core.runtime,
org.eclipse.team.core,
org.eclipse.team.ui,
org.eclipse.ui,
org.eclipse.ui.ide
Export-Package: com.microsoft.tfs.client.eclipse.ui,
com.microsoft.tfs.client.eclipse.ui.actions,
com.microsoft.tfs.client.eclipse.ui.actions.sync,
@ -34,22 +47,3 @@ Export-Package: com.microsoft.tfs.client.eclipse.ui,
com.microsoft.tfs.client.eclipse.ui.wizard.sharewizard,
com.microsoft.tfs.client.eclipse.ui.wizard.sync,
com.microsoft.tfs.client.eclipse.ui.wizard.teamprojectwizard
Require-Bundle: org.eclipse.ui.ide,
org.eclipse.compare,
org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.team.ui,
org.eclipse.ui.views,
com.microsoft.tfs.logging,
com.microsoft.tfs.core,
org.eclipse.team.core,
org.eclipse.core.filesystem,
org.eclipse.core.resources,
com.microsoft.tfs.util,
com.microsoft.tfs.client.eclipse,
com.microsoft.tfs.client.common,
com.microsoft.tfs.client.common.ui,
com.microsoft.tfs.client.common.ui.teambuild,
com.microsoft.tfs.client.common.ui.vcexplorer
Eclipse-LazyStart: true
Bundle-RequiredExecutionEnvironment: JavaSE-1.6

Просмотреть файл

@ -1,9 +1,10 @@
source.. = src/
output.. = bin/
bin.includes = .,\
META-INF/,\
plugin.xml,\
images/,\
about.ini,\
META-INF/,\
plugin.xml,\
plugin.properties
output.. = bin/
source.. = src/
javacProjectSettings = true

Просмотреть файл

@ -13,7 +13,6 @@ public class TFSLocalHistoryAdapterFactory implements IAdapterFactory {
private static final Log log = LogFactory.getLog(TFSLocalHistoryAdapterFactory.class);
@Override
@SuppressWarnings("rawtypes")
public Object getAdapter(final Object adaptableObject, final Class adapterType) {
/*
* HACK: Eclipse local history view (GenericHistoryView) refuses to
@ -28,7 +27,6 @@ public class TFSLocalHistoryAdapterFactory implements IAdapterFactory {
Class.forName("org.eclipse.team.internal.ui.history.LocalHistoryPageSource"); //$NON-NLS-1$
if (localHistoryClass != null) {
@SuppressWarnings("unchecked")
Method instanceMethod = null;
try {
instanceMethod = localHistoryClass.getMethod("getInstance"); //$NON-NLS-1$

Просмотреть файл

@ -1,9 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src" output="bin"/>
<classpathentry kind="src" path="tests" output="bin-test">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4">
<attributes>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="tests"/>
<classpathentry kind="output" path="bin"/>
</classpath>

Просмотреть файл

@ -1,3 +1,2 @@
#Wed Aug 18 10:14:39 EDT 2010
encoding/<project>=UTF-8
eclipse.preferences.version=1
encoding/<project>=UTF-8

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше