Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2009-01-15 11:29:43 +0000
committerAlexander Kurtakov2009-01-15 11:29:43 +0000
commit35750f4318719dba42446a3c0e57314d4482148e (patch)
tree9954954a31f35c992ef05b224b4fa48e1e5cd4cd /rpmstubby
parent8f38e2b961ddba4caa156ba39bd77714076ffe1a (diff)
downloadorg.eclipse.linuxtools-35750f4318719dba42446a3c0e57314d4482148e.tar.gz
org.eclipse.linuxtools-35750f4318719dba42446a3c0e57314d4482148e.tar.xz
org.eclipse.linuxtools-35750f4318719dba42446a3c0e57314d4482148e.zip
2009-01-15 Alexander Kurtakov <akurtako@redhat.com>
* .settings/org.eclipse.jdt.core.prefs: Enable javadoc validity warnings. * src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java (logInfo): Fix javadoc. (logError): Likewise. (log): Likewise. (createStatus): Likewise.
Diffstat (limited to 'rpmstubby')
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/.settings/org.eclipse.jdt.core.prefs15
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/ChangeLog9
-rw-r--r--rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java30
3 files changed, 36 insertions, 18 deletions
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/.settings/org.eclipse.jdt.core.prefs b/rpmstubby/org.eclipse.linuxtools.rpmstubby/.settings/org.eclipse.jdt.core.prefs
index 74a388dc40..77f9944cd8 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/.settings/org.eclipse.jdt.core.prefs
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/.settings/org.eclipse.jdt.core.prefs
@@ -1,4 +1,4 @@
-#Wed Nov 19 22:23:07 CET 2008
+#Thu Jan 15 01:43:58 CET 2009
eclipse.preferences.version=1
instance/org.eclipse.core.net/org.eclipse.core.net.hasMigrated=true
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
@@ -8,6 +8,7 @@ org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
+org.eclipse.jdt.core.compiler.doc.comment.support=enabled
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
@@ -27,9 +28,21 @@ org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=ignore
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=warning
+org.eclipse.jdt.core.compiler.problem.invalidJavadoc=warning
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTags=enabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled
+org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=public
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=warning
+org.eclipse.jdt.core.compiler.problem.missingJavadocComments=ignore
+org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsOverriding=disabled
+org.eclipse.jdt.core.compiler.problem.missingJavadocCommentsVisibility=public
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagDescription=all_standard_tags
+org.eclipse.jdt.core.compiler.problem.missingJavadocTags=ignore
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=disabled
+org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=public
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/ChangeLog b/rpmstubby/org.eclipse.linuxtools.rpmstubby/ChangeLog
index 0061824fc0..978e019571 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/ChangeLog
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/ChangeLog
@@ -1,3 +1,12 @@
+2009-01-15 Alexander Kurtakov <akurtako@redhat.com>
+
+ * .settings/org.eclipse.jdt.core.prefs: Enable javadoc validity warnings.
+ * src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java
+ (logInfo): Fix javadoc.
+ (logError): Likewise.
+ (log): Likewise.
+ (createStatus): Likewise.
+
2009-01-14 Andrew Overholt <overholt@redhat.com>
* META-INF/MANIFEST.MF: Add qualifier back to trunk.
diff --git a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java b/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java
index deb340ef17..522a05f50d 100644
--- a/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java
+++ b/rpmstubby/org.eclipse.linuxtools.rpmstubby/src/org/eclipse/linuxtools/rpmstubby/StubbyLog.java
@@ -22,7 +22,7 @@ public class StubbyLog {
/**
* Log the specified information.
*
- * @param message, a human-readable message, localized to the
+ * @param message A human-readable message, localized to the
* current locale.
*/
public static void logInfo(String message) {
@@ -32,7 +32,7 @@ public class StubbyLog {
/**
* Log the specified error.
*
- * @param exception, a low-level exception.
+ * @param exception A low-level exception.
*/
public static void logError(Throwable exception) {
logError("Unexpected Exception", exception);
@@ -41,9 +41,9 @@ public class StubbyLog {
/**
* Log the specified error.
*
- * @param message, a human-readable message, localized to the
+ * @param message A human-readable message, localized to the
* current locale.
- * @param exception, a low-level exception, or <code>null</code>
+ * @param exception A low-level exception, or <code>null</code>
* if not applicable.
*/
public static void logError(String message, Throwable exception) {
@@ -53,18 +53,16 @@ public class StubbyLog {
/**
* Log the specified information.
*
- * @param severity, the severity; one of the following:
+ * @param severity The severity; one of the following:
* <code>IStatus.OK</code>,
* <code>IStatus.ERROR</code>,
* <code>IStatus.INFO</code>, or
* <code>IStatus.WARNING</code>.
- * @param pluginId. the unique identifier of the relevant
- * plug-in.
- * @param code, the plug-in-specific status code, or
+ * @param code The plug-in-specific status code, or
* <code>OK</code>.
- * @param message, a human-readable message, localized to the
+ * @param message A human-readable message, localized to the
* current locale.
- * @param exception, a low-level exception, or <code>null</code>
+ * @param exception A low-level exception, or <code>null</code>
* if not applicable.
*/
public static void log(int severity, int code, String message,
@@ -76,18 +74,16 @@ public class StubbyLog {
/**
* Create a status object representing the specified information.
*
- * @param severity, the severity; one of the following:
+ * @param severity The severity; one of the following:
* <code>IStatus.OK</code>,
* <code>IStatus.ERROR</code>,
* <code>IStatus.INFO</code>, or
* <code>IStatus.WARNING</code>.
- * @param pluginId, the unique identifier of the relevant
- * plug-in.
- * @param code, the plug-in-specific status code, or
+ * @param code The plug-in-specific status code, or
* <code>OK</code>.
- * @param message, a human-readable message, localized to the
+ * @param message A human-readable message, localized to the
* current locale.
- * @param exception, a low-level exception, or <code>null</code>
+ * @param exception A low-level exception, or <code>null</code>
* if not applicable.
* @return, the status object (not <code>null</code>).
*/
@@ -101,7 +97,7 @@ public class StubbyLog {
/**
* Log the given status.
*
- * @param status, the status to log.
+ * @param status The status to log.
*/
public static void log(IStatus status) {
StubbyPlugin.getDefault().getLog().log(status);

Back to the top