From 5b1fb77a3a9299251fc92d35b55ff555c007a227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Dinis=20Ferreira?= Date: Fri, 31 Jul 2026 22:51:56 +0200 Subject: [PATCH] chore(deps): bump checkstyle to 13.9.0 --- .../tools/ddk/check/CheckRuntimeModule.java | 8 +++- .../JavaDocCommentDocumentationProvider.java | 2 + .../tools/ddk/check/util/GrammarHelper.java | 2 + .../validation/ComposedCheckValidator.java | 2 + .../CheckHighlightingConfiguration.java | 2 + .../ddk/check/ui/labeling/CheckImages.java | 48 +++++++++++++++---- .../checkcfg/ui/labeling/CheckCfgImages.java | 18 +++++-- .../test/ui/swtbot/FixedDefaultWorkbench.java | 8 +++- .../parser/common/GrammarRuleAnnotations.java | 4 +- .../validation/AbstractValidElementBase.java | 4 ++ .../xtext/ui/validation/ValidExtension.java | 4 ++ .../formatting/locators/IExtendedLocator.java | 2 + .../tools/ddk/xtext/layered/IIssueStore.java | 2 + .../extensions/IResourceDescription2.java | 2 + .../persistence/ResourceLoadMode.java | 5 +- .../xtext/scoping/AbstractRecursiveScope.java | 2 + .../scoping/AliasingEObjectDescription.java | 4 ++ .../ddk/xtext/scoping/DelegatingScope.java | 2 + .../AbstractDeclarativeValidValidator.java | 2 + .../validation/ValidPreferenceStore.java | 28 +++++++++++ ddk-configuration/checkstyle/avaloq.xml | 2 +- ddk-configuration/checkstyle/suppressions.xml | 4 +- ddk-parent/pom.xml | 2 +- 23 files changed, 137 insertions(+), 22 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/CheckRuntimeModule.java b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/CheckRuntimeModule.java index e48e5a19c8..e5e5a6eb8f 100644 --- a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/CheckRuntimeModule.java +++ b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/CheckRuntimeModule.java @@ -83,6 +83,8 @@ public Class bindIQualifiedNameProvider() { } /** + * Returns the Javadoc-like documentation provider binding. + * * @return a JavaDoc-like documentation provider */ public Class bindIEObjectDocumentationProvider() { @@ -99,7 +101,11 @@ public void configureIScopeProviderDelegate(final com.google.inject.Binder binde binder.bind(IScopeProvider.class).annotatedWith(Names.named(org.eclipse.xtext.scoping.impl.AbstractDeclarativeScopeProvider.NAMED_DELEGATE)).to(XImportSectionNamespaceScopeProvider.class); } - /** @return a strategy for selecting the objects to export in Index */ + /** + * Returns the strategy for selecting objects to export in the index. + * + * @return a strategy for selecting the objects to export in Index + */ @Override public Class bindIDefaultResourceDescriptionStrategy() { return CheckResourceDescriptionStrategy.class; diff --git a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/documentation/JavaDocCommentDocumentationProvider.java b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/documentation/JavaDocCommentDocumentationProvider.java index 20ab1f132f..8d52b4e7f6 100644 --- a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/documentation/JavaDocCommentDocumentationProvider.java +++ b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/documentation/JavaDocCommentDocumentationProvider.java @@ -23,6 +23,8 @@ /** + * Provides documentation extracted from Javadoc comments. + * * @author Christoph Kulla - Initial contribution and API */ @SuppressWarnings("nls") diff --git a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/util/GrammarHelper.java b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/util/GrammarHelper.java index a60c71d2a3..6e07f5eecd 100644 --- a/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/util/GrammarHelper.java +++ b/com.avaloq.tools.ddk.check.core/src/com/avaloq/tools/ddk/check/util/GrammarHelper.java @@ -61,6 +61,8 @@ protected String getBundleSymbolicName(final Class classe) { } /** + * Returns a label for the grammar. + * * @return a text representation of the grammar in which the last segment * appears first (like in content assist.) */ diff --git a/com.avaloq.tools.ddk.check.runtime.core/src/com/avaloq/tools/ddk/check/runtime/validation/ComposedCheckValidator.java b/com.avaloq.tools.ddk.check.runtime.core/src/com/avaloq/tools/ddk/check/runtime/validation/ComposedCheckValidator.java index 8b873070fe..bacbaf90db 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/src/com/avaloq/tools/ddk/check/runtime/validation/ComposedCheckValidator.java +++ b/com.avaloq.tools.ddk.check.runtime.core/src/com/avaloq/tools/ddk/check/runtime/validation/ComposedCheckValidator.java @@ -19,6 +19,8 @@ /** + * Identifies a composed check validator. + * * @author Sebastian Zarnekow - Initial contribution and API */ @Retention(RetentionPolicy.RUNTIME) diff --git a/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/highlighting/CheckHighlightingConfiguration.java b/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/highlighting/CheckHighlightingConfiguration.java index fbdd0dc3b4..85dbbaae32 100644 --- a/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/highlighting/CheckHighlightingConfiguration.java +++ b/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/highlighting/CheckHighlightingConfiguration.java @@ -32,6 +32,8 @@ public void configure(final IHighlightingConfigurationAcceptor acceptor) { } /** + * Returns the text style for Javadoc comments. + * * @return a bluish TextStyle for JavaDoc comments */ public TextStyle javaDocCommentTextStyle() { diff --git a/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/labeling/CheckImages.java b/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/labeling/CheckImages.java index c56027f7d1..e5278f21b0 100644 --- a/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/labeling/CheckImages.java +++ b/com.avaloq.tools.ddk.check.ui/src/com/avaloq/tools/ddk/check/ui/labeling/CheckImages.java @@ -45,37 +45,65 @@ public class CheckImages { @Inject private IImageHelper imageHelper; - /** @return an image representing a Java package */ + /** + * Returns an image representing a Java package. + * + * @return an image representing a Java package + */ public Image forPackage() { return getJdtImage(JavaPluginImages.DESC_OBJS_PACKAGE); } - /** @return an image representing a Check resource */ + /** + * Returns an image representing a Check resource. + * + * @return an image representing a Check resource + */ public Image forResource() { return imageHelper.getImage(RESOURCE_IMAGE); } - /** @return an image representing a JDT import container. */ + /** + * Returns an image representing a JDT import container. + * + * @return an image representing a JDT import container + */ public Image forImportContainer() { return getJdtImage(JavaPluginImages.DESC_OBJS_IMPCONT); } - /** @return an image representing a Java import statement. */ + /** + * Returns an image representing a Java import statement. + * + * @return an image representing a Java import statement + */ public Image forImport() { return getJdtImage(JavaPluginImages.DESC_OBJS_IMPDECL); } - /** @return an image representing a Check catalog. */ + /** + * Returns an image representing a Check catalog. + * + * @return an image representing a Check catalog + */ public Image forCheckCatalog() { return forResource(); } - /** @return an image representing a category. */ + /** + * Returns an image representing a category. + * + * @return an image representing a category + */ public Image forCategory() { return imageHelper.getImage(CATEGORY_IMAGE); } - /** @return an image representing a category. */ + /** + * Returns an image representing a severity range. + * + * @return an image representing a severity range + */ public Image forSeverityRange() { return imageHelper.getImage(SEVERITY_RANGE_IMAGE); } @@ -100,7 +128,11 @@ public Image forCheck(final SeverityKind severity) { } } - /** @return an image representing a Check context. */ + /** + * Returns an image representing a Check context. + * + * @return an image representing a Check context + */ public Image forContext() { return getJdtImage(JavaElementImageProvider.getTypeImageDescriptor(false, true, Flags.AccPublic, false)); } diff --git a/com.avaloq.tools.ddk.checkcfg.ui/src/com/avaloq/tools/ddk/checkcfg/ui/labeling/CheckCfgImages.java b/com.avaloq.tools.ddk.checkcfg.ui/src/com/avaloq/tools/ddk/checkcfg/ui/labeling/CheckCfgImages.java index a353d42332..3a03269c2b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/src/com/avaloq/tools/ddk/checkcfg/ui/labeling/CheckCfgImages.java +++ b/com.avaloq.tools.ddk.checkcfg.ui/src/com/avaloq/tools/ddk/checkcfg/ui/labeling/CheckCfgImages.java @@ -33,17 +33,29 @@ public class CheckCfgImages { @Inject private IImageHelper imageHelper; - /** @return an image representing a Check Configuration resource */ + /** + * Returns an image representing a Check Configuration resource. + * + * @return an image representing a Check Configuration resource + */ public Image forResource() { return imageHelper.getImage(RESOURCE_IMAGE); } - /** @return an image representing a Check Configuration */ + /** + * Returns an image representing a Check Configuration. + * + * @return an image representing a Check Configuration + */ public Image forCheckConfiguration() { return forResource(); } - /** @return an image representing a configured category */ + /** + * Returns an image representing a configured category. + * + * @return an image representing a configured category + */ public Image forConfiguredCatalog() { return imageHelper.getImage(CATEGORY_IMAGE); } diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/FixedDefaultWorkbench.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/FixedDefaultWorkbench.java index 3a87737867..959233d4aa 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/FixedDefaultWorkbench.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/FixedDefaultWorkbench.java @@ -31,7 +31,11 @@ */ class FixedDefaultWorkbench { - /** @see org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine#getLimboShell() */ + /** + * Identifies the limbo shell. + * + * @see org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine#getLimboShell() + */ @SuppressWarnings("restriction") private static final String LIMBO_SHELL = "PartRenderingEngine's limbo"; //$NON-NLS-1$ private static final String QUIK_ACCESS_SHELL = "Quick Access"; //$NON-NLS-1$ @@ -182,4 +186,4 @@ private IWorkbenchPage activePage() { } -/* Copyright (c) Avaloq Group AG */ \ No newline at end of file +/* Copyright (c) Avaloq Group AG */ diff --git a/com.avaloq.tools.ddk.xtext.generator/src/com/avaloq/tools/ddk/xtext/generator/parser/common/GrammarRuleAnnotations.java b/com.avaloq.tools.ddk.xtext.generator/src/com/avaloq/tools/ddk/xtext/generator/parser/common/GrammarRuleAnnotations.java index f6bf5982d8..9817f27d0a 100644 --- a/com.avaloq.tools.ddk.xtext.generator/src/com/avaloq/tools/ddk/xtext/generator/parser/common/GrammarRuleAnnotations.java +++ b/com.avaloq.tools.ddk.xtext.generator/src/com/avaloq/tools/ddk/xtext/generator/parser/common/GrammarRuleAnnotations.java @@ -138,8 +138,8 @@ public String toString() { } /** - * Gated predicate: {condition}?=> - * Validating predicate: {condition message}? + * Gated predicate: {condition}?=>. + * Validating predicate: {condition message}?. */ @EmfAdaptable public static class SemanticPredicate { diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/AbstractValidElementBase.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/AbstractValidElementBase.java index 12414d927b..ee8ef70886 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/AbstractValidElementBase.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/AbstractValidElementBase.java @@ -73,6 +73,8 @@ public AbstractValidElementBase[] getChildElements() { } /** + * Returns the identifier that distinguishes extension instances. + * * @return the id that tells one extension instance from another */ public String getExtensionId() { @@ -80,6 +82,8 @@ public String getExtensionId() { } /** + * Returns the name of the XML element that defines this class. + * * @return the name of the XML element that defines this class */ public String getElementTypeName() { diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/ValidExtension.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/ValidExtension.java index c1b303f5f2..3cb0cfe5d0 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/ValidExtension.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/validation/ValidExtension.java @@ -41,6 +41,8 @@ private ValidExtension(final IExtension e) { } /** + * Returns the identifier that distinguishes extension instances. + * * @return the id that tells one extension instance from another */ public String getExtensionId() { @@ -48,6 +50,8 @@ public String getExtensionId() { } /** + * Returns the top-level elements of this extension point. + * * @return the top-level elements of this extension point */ public ValidElement[] getTopLevelElements() { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/formatting/locators/IExtendedLocator.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/formatting/locators/IExtendedLocator.java index 979d5a4b29..08e02382e0 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/formatting/locators/IExtendedLocator.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/formatting/locators/IExtendedLocator.java @@ -16,6 +16,8 @@ public interface IExtendedLocator { /** + * Defines how locators are aggregated. + * * @see IExtendedLocator#getPrecedence(). */ enum AggregationPolicy { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/layered/IIssueStore.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/layered/IIssueStore.java index d16f77d5c9..3d10be4cb5 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/layered/IIssueStore.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/layered/IIssueStore.java @@ -22,6 +22,8 @@ public interface IIssueStore { /** + * Returns all stored issues. + * * @return all stored issues. */ Multimap getIssues(); diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/extensions/IResourceDescription2.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/extensions/IResourceDescription2.java index cb7f2d95e9..c1c0591e70 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/extensions/IResourceDescription2.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/extensions/IResourceDescription2.java @@ -24,6 +24,8 @@ public interface IResourceDescription2 extends IResourceDescription { /** + * Returns the imported names on which the described resource depends. + * * @return the map of names the described resource depends on and their types. */ Map> getImportedNamesTypes(); diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ResourceLoadMode.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ResourceLoadMode.java index cd3499e615..e1b637eddd 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ResourceLoadMode.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ResourceLoadMode.java @@ -84,7 +84,8 @@ enum Instruction { } /** - * Returns the load mode to be used to load the given resource: + * Returns the load mode to be used to load the given resource. + * The mode is determined as follows: *
    *
  1. If the resource is not contained in any resource set this method will return {@link #PARSE}.
  2. *
  3. If the resource set's load options specify a load mode, that is returned.
  4. @@ -197,4 +198,4 @@ public String toString() { Instruction instruction(Constituent constituent); } -/* Copyright (c) Avaloq Group AG */ \ No newline at end of file +/* Copyright (c) Avaloq Group AG */ diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AbstractRecursiveScope.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AbstractRecursiveScope.java index acfe91621f..96c1b466d1 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AbstractRecursiveScope.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AbstractRecursiveScope.java @@ -215,6 +215,8 @@ public synchronized IEObjectDescription getSingleElement(final EObject object) { } /** + * Returns the identifier of this scope. + * * @return the id */ public String getId() { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AliasingEObjectDescription.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AliasingEObjectDescription.java index 1d2ff60ee4..2352309843 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AliasingEObjectDescription.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/AliasingEObjectDescription.java @@ -42,6 +42,8 @@ public AliasingEObjectDescription(final QualifiedName name, final IEObjectDescri } /** + * Returns the original name by which this element can be accessed. + * * @return the original name, this element can be accessed by. */ public QualifiedName getOriginalName() { @@ -49,6 +51,8 @@ public QualifiedName getOriginalName() { } /** + * Returns the original qualified name of the element. + * * @return the original qualified name of the element. */ public QualifiedName getOriginalQualifiedName() { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/DelegatingScope.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/DelegatingScope.java index e0713ee958..35a8b1f8f6 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/DelegatingScope.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/scoping/DelegatingScope.java @@ -46,6 +46,8 @@ public class DelegatingScope extends AbstractRecursiveScope { private static String stackOverflowScopeId; /** + * Identifies the description used when a stack overflow occurs. + * * @see #STACK_OVERFLOW_SCOPE */ private static final IEObjectDescription STACK_OVERFLOW_EOBJECT_DESCRIPTION = new IEObjectDescription() { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/AbstractDeclarativeValidValidator.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/AbstractDeclarativeValidValidator.java index ca3ed88af3..20565ff75c 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/AbstractDeclarativeValidValidator.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/AbstractDeclarativeValidValidator.java @@ -149,6 +149,8 @@ private ResourceValidationRuleSummaryEvent.Collector getTraceCollector(final EOb } /** + * Returns the preference store for this validator. + * * @return the preference store (based on Scopes, but without UI) for that validator. */ protected ValidPreferenceStore getValidPreferenceStore() { diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java index c5c94765b1..67819821b5 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java @@ -251,6 +251,8 @@ public void setSearchContexts(final IScopeContext[] scopes) { // NOPMD } /** + * Checks whether a current or default value exists for the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#contains(java.lang.String) * @param name * the name of the preference @@ -261,6 +263,8 @@ public boolean contains(final String name) { } /** + * Returns the boolean value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getBoolean(java.lang.String) * @param name * the name of the preference @@ -272,6 +276,8 @@ public boolean getBoolean(final String name) { } /** + * Returns the default boolean value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultBoolean(java.lang.String) * @param name * the name of the preference @@ -282,6 +288,8 @@ public boolean getDefaultBoolean(final String name) { } /** + * Returns the default double value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultDouble(java.lang.String) * @param name * the name of the preference @@ -292,6 +300,8 @@ public double getDefaultDouble(final String name) { } /** + * Returns the default float value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultFloat(java.lang.String) * @param name * the name of the preference @@ -302,6 +312,8 @@ public float getDefaultFloat(final String name) { } /** + * Returns the default integer value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultInt(java.lang.String) * @param name * the name of the preference @@ -312,6 +324,8 @@ public int getDefaultInt(final String name) { } /** + * Returns the default long value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultLong(java.lang.String) * @param name * the name of the preference @@ -322,6 +336,8 @@ public long getDefaultLong(final String name) { } /** + * Returns the default string value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDefaultString(java.lang.String) * @param name * the name of the preference @@ -332,6 +348,8 @@ public String getDefaultString(final String name) { } /** + * Returns the double value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getDouble(java.lang.String) * @param name * the name of the preference @@ -364,6 +382,8 @@ private String internalGet(final String key) { } /** + * Returns the float value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getFloat(java.lang.String) * @param name * the name of the preference @@ -382,6 +402,8 @@ public float getFloat(final String name) { } /** + * Returns the integer value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getInt(java.lang.String) * @param name * the name of the preference @@ -400,6 +422,8 @@ public int getInt(final String name) { } /** + * Returns the long value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getLong(java.lang.String) * @param name * the name of the preference @@ -418,6 +442,8 @@ public long getLong(final String name) { } /** + * Returns the string value of the preference. + * * @see org.eclipse.jface.preference.IPreferenceStore#getString(java.lang.String) * @param name * the name of the preference @@ -429,6 +455,8 @@ public String getString(final String name) { } /** + * Checks whether the preference has its default value. + * * @see org.eclipse.jface.preference.IPreferenceStore#isDefault(java.lang.String) * @param name * the name of the preference diff --git a/ddk-configuration/checkstyle/avaloq.xml b/ddk-configuration/checkstyle/avaloq.xml index 384ba4615a..a34d0f3230 100644 --- a/ddk-configuration/checkstyle/avaloq.xml +++ b/ddk-configuration/checkstyle/avaloq.xml @@ -89,7 +89,7 @@ - + diff --git a/ddk-configuration/checkstyle/suppressions.xml b/ddk-configuration/checkstyle/suppressions.xml index 36fe796d44..c822bfccc1 100644 --- a/ddk-configuration/checkstyle/suppressions.xml +++ b/ddk-configuration/checkstyle/suppressions.xml @@ -10,7 +10,7 @@ + checks="AvoidStarImport|EmptyBlock|IllegalCatch|JavadocMethod|JavadocType|SummaryJavadoc|MagicNumber|MethodName"/> - \ No newline at end of file + diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 963fc70979..64de805f04 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -48,7 +48,7 @@ 3.6.0 - 13.8.0 + 13.9.0 3.5.0 3.1.4 4.10.3.0