v occurrs free in
* subTerm, but does not occurr in boundVars.
*
- * @returns true if subTerm bound by boundVars would change under
- * application of this substitution
+ * @return true if subTerm bound by boundVars would change under
+ * application of this substitution
*/
protected boolean subTermChanges(ImmutableArray
* Provides the facility to open the documentation at press of F1. The opened page is determined
* context-sensitive by the current focused component and parent components. Specify the URL via
- * {@HelpInfo}.
+ * {@link HelpInfo}.
*
* @author Alexander Weigl
* @version 1 (10.04.19)
diff --git a/key.ui/src/main/java/de/uka/ilkd/key/gui/settings/SettingsPanel.java b/key.ui/src/main/java/de/uka/ilkd/key/gui/settings/SettingsPanel.java
index af3bf9cbfe4..72e683326c6 100644
--- a/key.ui/src/main/java/de/uka/ilkd/key/gui/settings/SettingsPanel.java
+++ b/key.ui/src/main/java/de/uka/ilkd/key/gui/settings/SettingsPanel.java
@@ -52,8 +52,11 @@ protected SettingsPanel() {
}
/**
- * @param info
- * @return
+ * Factory method for the construction of informational displays using
+ * text areas.
+ *
+ * @param info information to be shown
+ * @return a new {@link JTextArea} showing the given information
*/
protected static JTextArea createInfoArea(String info) {
JTextArea textArea = new JTextArea(info);
diff --git a/key.ui/src/main/java/de/uka/ilkd/key/gui/utilities/GuiUtilities.java b/key.ui/src/main/java/de/uka/ilkd/key/gui/utilities/GuiUtilities.java
index baf3361a283..76a7fc9acdd 100644
--- a/key.ui/src/main/java/de/uka/ilkd/key/gui/utilities/GuiUtilities.java
+++ b/key.ui/src/main/java/de/uka/ilkd/key/gui/utilities/GuiUtilities.java
@@ -36,9 +36,11 @@ public static void copyHighlightToClipboard(SequentView view, PosInSequent pos)
/**
* Center a component on the screen.
*
+ * Preconditions: comp.getSize() as on screen.
+ *
* @param comp the component to be centered relative to the screen. It must already have its
* final size set.
- * @preconditions comp.getSize() as on screen.
+ *
* @see #setCenter(Component, Component)
*/
public static void setCenter(Component comp) {
diff --git a/key.util/src/main/java/org/key_project/util/collection/ImmutableList.java b/key.util/src/main/java/org/key_project/util/collection/ImmutableList.java
index d83c99b9e90..8fb6d4e5f86 100644
--- a/key.util/src/main/java/org/key_project/util/collection/ImmutableList.java
+++ b/key.util/src/main/java/org/key_project/util/collection/ImmutableList.java
@@ -288,7 +288,7 @@ default Listnull
+ * @return null
*/
public StatementContainer getStatementContainer() {
return null;
}
/**
- * @throws UnsupportedOperationException
* @see #getStatementContainer()
*/
public void setStatementContainer(@SuppressWarnings("unused") StatementContainer c) {
diff --git a/recoder/src/main/java/recoder/kit/transformation/PrepareStatementList.java b/recoder/src/main/java/recoder/kit/transformation/PrepareStatementList.java
index 5cd4eed2ea1..94b0ed2426b 100644
--- a/recoder/src/main/java/recoder/kit/transformation/PrepareStatementList.java
+++ b/recoder/src/main/java/recoder/kit/transformation/PrepareStatementList.java
@@ -19,7 +19,7 @@
/**
* Syntactic transformation returning a mutable statement list that contains the given statement,
- * and creating a new {@linkrecoder.java.StatementBlock} if necessary. It is necessary to create a
+ * and creating a new {@link recoder.java.StatementBlock} if necessary. It is necessary to create a
* new block, if {@link recoder.kit.StatementKit#getStatementMutableList}returns null
* . This is the case if the statement container allows only a single statement and the given
* statement is not inside a {@link recoder.java.StatementBlock}. If the statement has no parent, it
@@ -145,11 +145,6 @@ public Statement getStatement() {
* Problem report indicating that a parent is not suited for a given child.
*/
public static class IllegalParentContext extends Conflict {
-
- /**
- * serialization id
- */
- private static final long serialVersionUID = -1995165154877949565L;
private final NonTerminalProgramElement parent;
public IllegalParentContext(NonTerminalProgramElement parent) {