Remove useless javadoc, rely on git history instead · jline/jline3@dd4145b (original) (raw)

File tree

Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 06.01.16
14 - */
15 11 public class AbstractPromptableElement implements PromptableElementIF {
16 12
17 13 protected String message;
Original file line number Diff line number Diff line change
@@ -12,10 +12,6 @@
12 12
13 13 import org.jline.consoleui.elements.items.CheckboxItemIF;
14 14
15 -/**
16 - * User: Andreas Wegmann
17 - * Date: 01.01.16
18 - */
19 15 public class Checkbox extends AbstractPromptableElement {
20 16
21 17 private final int pageSize;
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 07.01.16
14 - */
15 11 public class ConfirmChoice extends AbstractPromptableElement {
16 12
17 13 public enum ConfirmationValue {
Original file line number Diff line number Diff line change
@@ -12,10 +12,6 @@
12 12
13 13 import org.jline.consoleui.elements.items.ChoiceItemIF;
14 14
15 -/**
16 - * User: Andreas Wegmann
17 - * Date: 07.01.16
18 - */
19 15 public class ExpandableChoice extends AbstractPromptableElement {
20 16
21 17 private final List<ChoiceItemIF> choiceItems;
Original file line number Diff line number Diff line change
@@ -10,10 +10,6 @@
10 10
11 11 import org.jline.reader.Completer;
12 12
13 -/**
14 - * User: Andreas Wegmann
15 - * Date: 06.01.16
16 - */
17 13 public class InputValue extends AbstractPromptableElement {
18 14 private String value;
19 15 private final String defaultValue;
Original file line number Diff line number Diff line change
@@ -12,10 +12,6 @@
12 12
13 13 import org.jline.consoleui.elements.items.ListItemIF;
14 14
15 -/**
16 - * User: Andreas Wegmann
17 - * Date: 04.01.16
18 - */
19 15 public class ListChoice extends AbstractPromptableElement {
20 16
21 17 private final int pageSize;
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 04.01.16
14 - */
15 11 public interface PromptableElementIF {
16 12
17 13 String getName();
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements.items;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 01.01.16
14 - */
15 11 public interface CheckboxItemIF extends ConsoleUIItemIF {
16 12 default boolean isChecked() {
17 13 return false;
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements.items;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 13.01.16
14 - */
15 11 public interface ChoiceItemIF extends ConsoleUIItemIF, ListItemIF {
16 12 default boolean isDefaultChoice() {
17 13 return false;
Original file line number Diff line number Diff line change
@@ -8,10 +8,6 @@
8 8 */
9 9 package org.jline.consoleui.elements.items;
10 10
11 -/**
12 - * User: Andreas Wegmann
13 - * Date: 01.01.16
14 - */
15 11 public interface ConsoleUIItemIF {
16 12 boolean isSelectable();
17 13