Skip to content

Commit

Permalink
Remove useless javadoc, rely on git history instead
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Feb 26, 2024
1 parent 38d6adb commit dd4145b
Show file tree
Hide file tree
Showing 40 changed files with 0 additions and 141 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements;

/**
* User: Andreas Wegmann
* Date: 06.01.16
*/
public class AbstractPromptableElement implements PromptableElementIF {

protected String message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@

import org.jline.consoleui.elements.items.CheckboxItemIF;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public class Checkbox extends AbstractPromptableElement {

private final int pageSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements;

/**
* User: Andreas Wegmann
* Date: 07.01.16
*/
public class ConfirmChoice extends AbstractPromptableElement {

public enum ConfirmationValue {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@

import org.jline.consoleui.elements.items.ChoiceItemIF;

/**
* User: Andreas Wegmann
* Date: 07.01.16
*/
public class ExpandableChoice extends AbstractPromptableElement {

private final List<ChoiceItemIF> choiceItems;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

import org.jline.reader.Completer;

/**
* User: Andreas Wegmann
* Date: 06.01.16
*/
public class InputValue extends AbstractPromptableElement {
private String value;
private final String defaultValue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@

import org.jline.consoleui.elements.items.ListItemIF;

/**
* User: Andreas Wegmann
* Date: 04.01.16
*/
public class ListChoice extends AbstractPromptableElement {

private final int pageSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements;

/**
* User: Andreas Wegmann
* Date: 04.01.16
*/
public interface PromptableElementIF {

String getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements.items;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public interface CheckboxItemIF extends ConsoleUIItemIF {
default boolean isChecked() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements.items;

/**
* User: Andreas Wegmann
* Date: 13.01.16
*/
public interface ChoiceItemIF extends ConsoleUIItemIF, ListItemIF {
default boolean isDefaultChoice() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
*/
package org.jline.consoleui.elements.items;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public interface ConsoleUIItemIF {
boolean isSelectable();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,4 @@
*/
package org.jline.consoleui.elements.items;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public interface ListItemIF extends ConsoleUIItemIF {}
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
import org.jline.consoleui.elements.items.CheckboxItemIF;
import org.jline.consoleui.elements.items.ConsoleUIItemIF;

/**
* User: Andreas Wegmann
* Date: 07.12.15
*/
public class CheckboxItem implements CheckboxItemIF, ConsoleUIItemIF {
boolean checked;
String text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

import org.jline.consoleui.elements.items.ChoiceItemIF;

/**
* User: Andreas Wegmann
* Date: 07.01.16
*/
public class ChoiceItem implements ChoiceItemIF {
private final Character key;
private final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

import org.jline.consoleui.elements.items.ListItemIF;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public class ListItem implements ListItemIF {
String text;
String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
import org.jline.consoleui.elements.items.ChoiceItemIF;
import org.jline.consoleui.elements.items.ListItemIF;

/**
* User: Andreas Wegmann
* Date: 01.01.16
*/
public class Separator implements CheckboxItemIF, ListItemIF, ChoiceItemIF {
private String message;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@

/**
* Classes for all prompt implementations.
*
* @author <a href="mailto:matti.rintanikkola@gmail.com">Matti Rinta-Nikkola</a>
*/
public abstract class AbstractPrompt<T extends ConsoleUIItemIF> {
protected final Terminal terminal;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
/**
* Result of a checkbox choice. CheckboxResult contains a {@link java.util.Set} with the
* IDs of the selected checkbox items.
* <p>
* User: Andreas Wegmann
* Date: 03.02.16
*/
public class CheckboxResult implements PromptResultItemIF {
Set<String> selectedIds;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
/**
* Result of a confirmation choice. Holds a single value of 'yes' or 'no'
* from enum {@link ConfirmChoice.ConfirmationValue}.
* <p>
* User: Andreas Wegmann
* Date: 03.02.16
*/
public class ConfirmResult implements PromptResultItemIF {
ConfirmChoice.ConfirmationValue confirmed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

/**
* ConsolePrompt encapsulates the prompting of a list of input questions for the user.
*
* @author <a href="mailto:matti.rintanikkola@gmail.com">Matti Rinta-Nikkola</a>
*/
public class ConsolePrompt {
private final LineReader reader;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
/**
* Result of an expandable choice. ExpandableChoiceResult contains a String with the
* IDs of the selected item.
* <p>
* User: Andreas Wegmann<p>
* Date: 03.02.16
*/
public class ExpandableChoiceResult implements PromptResultItemIF {
String selectedId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@
*/
package org.jline.consoleui.prompt;

/**
*
* User: Andreas Wegmann
* Date: 03.02.16
*/
public class InputResult implements PromptResultItemIF {
private final String input;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

/**
* Result of a list choice. Holds the id of the selected item.
* <p>
* Created by Andreas Wegmann on 03.02.16.
*/
public class ListResult implements PromptResultItemIF {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
*/
package org.jline.consoleui.prompt;

/**
* Created by Andreas Wegmann on 03.02.16.
*/
public interface PromptResultItemIF {
String getResult();
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
import org.jline.consoleui.elements.items.CheckboxItemIF;
import org.jline.consoleui.elements.items.impl.CheckboxItem;

/**
* Created by andy on 22.01.16.
*/
public class CheckboxItemBuilder {
private final CheckboxPromptBuilder checkboxPromptBuilder;
private boolean checked;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
import org.jline.consoleui.elements.PageSizeType;
import org.jline.consoleui.elements.items.CheckboxItemIF;

/**
* Created by andy on 22.01.16.
*/
public class CheckboxPromptBuilder {
private final PromptBuilder promptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@

import org.jline.consoleui.elements.items.impl.Separator;

/**
* Created by andy on 22.01.16.
*/
public class CheckboxSeparatorBuilder {
private final CheckboxPromptBuilder promptBuilder;
private String text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

import org.jline.consoleui.elements.ConfirmChoice;

/**
* User: Andreas Wegmann
* Date: 24.01.16
*/
public class ConfirmPromptBuilder {
private final PromptBuilder promptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@

import org.jline.consoleui.elements.items.impl.ChoiceItem;

/**
* Created by andy on 22.01.16.
*/
public class ExpandableChoiceItemBuilder {
private final ExpandableChoicePromptBuilder choicePromptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
import org.jline.consoleui.elements.ExpandableChoice;
import org.jline.consoleui.elements.items.ChoiceItemIF;

/**
* Created by andy on 22.01.16.
*/
public class ExpandableChoicePromptBuilder {
private final PromptBuilder promptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@

import org.jline.consoleui.elements.items.impl.Separator;

/**
* Created by andy on 22.01.16.
*/
public class ExpandableChoiceSeparatorBuilder {
private final ExpandableChoicePromptBuilder expandableChoicePromptBuilder;
private String text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
import org.jline.consoleui.elements.InputValue;
import org.jline.reader.Completer;

/**
* Created by andy on 22.01.16.
*/
public class InputValueBuilder {
private final PromptBuilder promptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@

import org.jline.consoleui.elements.items.impl.ListItem;

/**
* Created by andy on 22.01.16.
*/
public class ListItemBuilder {
private final ListPromptBuilder listPromptBuilder;
private String text;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
import org.jline.consoleui.elements.items.ListItemIF;
import org.jline.consoleui.elements.items.impl.ListItem;

/**
* Created by andy on 22.01.16.
*/
public class ListPromptBuilder {
private final PromptBuilder promptBuilder;
private String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@

/**
* PromptBuilder is the builder class which creates
*
* Created by Andreas Wegmann
* on 20.01.16.
*/
public class PromptBuilder {
List<PromptableElementIF> promptList = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
import org.jline.utils.AttributedStyle;
import org.jline.utils.OSUtils;

/**
* User: Andreas Wegmann
* Date: 29.11.15
*/
public class Basic {

private static void addInHeader(List<AttributedString> header, String text) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
import org.jline.utils.AttributedString;
import org.jline.utils.AttributedStringBuilder;

/**
* User: Andreas Wegmann
* Date: 29.11.15
*/
public class LongList {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
import org.jline.utils.AttributedString;
import org.jline.utils.AttributedStringBuilder;

/**
* User: Andreas Wegmann
* Date: 12.08.2020
*/
public class SimpleExample {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
import org.jline.consoleui.elements.items.impl.Separator;
import org.junit.jupiter.api.Test;

/**
* User: Andreas Wegmann
* Date: 07.12.15
*/
public class CheckboxPromptTest {
@Test
public void renderSimpleList() {
Expand Down
Loading

0 comments on commit dd4145b

Please sign in to comment.