Skip to content
Commits on Source (4)
eclipse-jdt-core (4.8-1) unstable; urgency=medium
* New upstream release
* Fixed the Vcs-Browser URL
-- Emmanuel Bourg <ebourg@apache.org> Tue, 27 Nov 2018 12:47:15 +0100
eclipse-jdt-core (4.7.3-1) unstable; urgency=medium
* Initial release (Closes: #903913)
......
......@@ -21,7 +21,7 @@ Build-Depends:
eclipse-debian-helper
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/eclipse-jdt-core.git
Vcs-Browser: https://salsa.debian.org/java-team/eclipse-jdtcore
Vcs-Browser: https://salsa.debian.org/java-team/eclipse-jdt-core
Homepage: https://www.eclipse.org/jdt/core/
Package: libeclipse-jdt-annotation-java
......
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<component id="org.eclipse.jdt.annotation" version="2">
<resource path="META-INF/MANIFEST.MF">
<filter comment="Target of NonNullByDefault has been removed" id="926941240">
<message_arguments>
<message_argument value="2.2.0"/>
<message_argument value="2.1.150"/>
</message_arguments>
</filter>
</resource>
</component>
......@@ -3,7 +3,8 @@ Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-Localization: bundle
Bundle-SymbolicName: org.eclipse.jdt.annotation
Bundle-Version: 2.1.100.qualifier
Bundle-Version: 2.2.0.qualifier
Export-Package: org.eclipse.jdt.annotation
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Vendor: %providerName
Automatic-Module-Name: org.eclipse.jdt.annotation
......@@ -14,11 +14,11 @@
<parent>
<artifactId>eclipse.jdt.core</artifactId>
<groupId>eclipse.jdt.core</groupId>
<version>4.7.3-SNAPSHOT</version>
<version>4.8.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>2.1.100-SNAPSHOT</version>
<version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
......
......@@ -17,7 +17,6 @@ import static org.eclipse.jdt.annotation.DefaultLocation.*;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Applying this annotation to a declaration has the effect that type references,
......@@ -47,7 +46,8 @@ import java.lang.annotation.Target;
* <code>package-info.java</code> is used.
* </p>
* <p>
* <b>Note:</b> Since org.eclipse.jdt.annotation 2.0.0, this annotation also applies to field and local variable declarations.
* <b>Note:</b> Since org.eclipse.jdt.annotation 2.0.0, this annotation also applies to field and
* local variable declarations and since 2.2.0 also to parameter and module declarations.
* For the old API, see
* <a href="http://help.eclipse.org/kepler/topic/org.eclipse.jdt.doc.isv/reference/api/org/eclipse/jdt/annotation/NonNullByDefault.html">
* <code>@NonNullByDefault</code> in 1.1.0</a>.
......@@ -56,7 +56,6 @@ import java.lang.annotation.Target;
*/
@Documented
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.PACKAGE, ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.LOCAL_VARIABLE })
public @interface NonNullByDefault {
/**
* Specifies the set of locations within the annotated declaration that should be affected by the nonnull default.
......
......@@ -3,7 +3,8 @@ Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-Localization: bundle
Bundle-SymbolicName: org.eclipse.jdt.annotation
Bundle-Version: 1.1.100.qualifier
Bundle-Version: 1.1.200.qualifier
Export-Package: org.eclipse.jdt.annotation
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: %providerName
Automatic-Module-Name: org.eclipse.jdt.annotation
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2016 Eclipse Foundation and others.
Copyright (c) 2012, 2017 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
......@@ -14,10 +14,10 @@
<parent>
<artifactId>eclipse.jdt.core</artifactId>
<groupId>eclipse.jdt.core</groupId>
<version>4.7.3-SNAPSHOT</version>
<version>4.8.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>1.1.100-SNAPSHOT</version>
<version>1.1.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<component id="org.eclipse.jdt.apt.core" version="2">
<resource path="src/org/eclipse/jdt/apt/core/util/AptPreferenceConstants.java" type="org.eclipse.jdt.apt.core.util.AptPreferenceConstants">
<filter id="336658481">
<message_arguments>
<message_argument value="org.eclipse.jdt.apt.core.util.AptPreferenceConstants"/>
<message_argument value="APT_GENTESTSRCDIR"/>
</message_arguments>
</filter>
<filter id="336658481">
<message_arguments>
<message_argument value="org.eclipse.jdt.apt.core.util.AptPreferenceConstants"/>
<message_argument value="DEFAULT_GENERATED_TEST_SOURCE_FOLDER_NAME"/>
</message_arguments>
</filter>
</resource>
</component>
......@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.apt.core; singleton:=true
Bundle-Version: 3.5.50.qualifier
Bundle-Version: 3.6.0.qualifier
Bundle-Localization: plugin
Export-Package: com.sun.mirror.apt,
com.sun.mirror.declaration,
......@@ -27,3 +27,4 @@ Bundle-Vendor: %providerName
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Import-Package: com.sun.mirror.type
Automatic-Module-Name: org.eclipse.jdt.apt.core
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2017 Eclipse Foundation and others.
Copyright (c) 2012, 2018 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
......@@ -14,10 +14,10 @@
<parent>
<artifactId>eclipse.jdt.core</artifactId>
<groupId>eclipse.jdt.core</groupId>
<version>4.7.3-SNAPSHOT</version>
<version>4.8.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.apt.core</artifactId>
<version>3.5.50-SNAPSHOT</version>
<version>3.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
......@@ -43,6 +43,7 @@ import java.util.*;
public class AnnotationProcessors {
static class NoOpAP implements AnnotationProcessor {
NoOpAP() {}
@Override
public void process(){}
}
......@@ -78,6 +79,7 @@ public class AnnotationProcessors {
* Invokes the <tt>process</tt> method of each component processor,
* in the order in which the processors were passed to the constructor.
*/
@Override
public void process() {
for(AnnotationProcessor ap: aps)
ap.process();
......
......@@ -70,7 +70,8 @@ public abstract class RoundCompleteEvent extends java.util.EventObject {
/**
* Return source.
*/
public AnnotationProcessorEnvironment getSource() {
@Override
public AnnotationProcessorEnvironment getSource() {
return (AnnotationProcessorEnvironment)super.getSource();
}
}
......@@ -54,5 +54,6 @@ public interface AnnotationTypeDeclaration extends InterfaceDeclaration {
* @return the annotation type elements of this annotation type,
* or an empty collection if there are none
*/
Collection<AnnotationTypeElementDeclaration> getMethods();
@Override
Collection<AnnotationTypeElementDeclaration> getMethods();
}
......@@ -54,5 +54,6 @@ public interface AnnotationTypeElementDeclaration extends MethodDeclaration {
/**
* {@inheritDoc}
*/
AnnotationTypeDeclaration getDeclaringType();
@Override
AnnotationTypeDeclaration getDeclaringType();
}
......@@ -79,5 +79,6 @@ public interface AnnotationValue {
*
* @return a string representation of this value
*/
String toString();
@Override
String toString();
}
......@@ -86,5 +86,6 @@ public interface ClassDeclaration extends TypeDeclaration {
/**
* {@inheritDoc}
*/
Collection<MethodDeclaration> getMethods();
@Override
Collection<MethodDeclaration> getMethods();
}
......@@ -68,7 +68,8 @@ public interface Declaration {
* @return <tt>true</tt> if the specified object represents the same
* declaration as this
*/
boolean equals(Object obj);
@Override
boolean equals(Object obj);
/**
* Returns the text of the documentation ("javadoc") comment of
......
......@@ -45,5 +45,6 @@ public interface EnumConstantDeclaration extends FieldDeclaration {
/**
* {@inheritDoc}
*/
EnumDeclaration getDeclaringType();
@Override
EnumDeclaration getDeclaringType();
}
......@@ -70,7 +70,8 @@ public enum Modifier {
/**
* Returns this modifier's name in lowercase.
*/
public String toString() {
@Override
public String toString() {
if (lowercase == null) {
lowercase = name().toLowerCase(java.util.Locale.US);
}
......