Skip to content

Commit

Permalink
Cleanup comments and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-xdev committed Nov 13, 2024
1 parent 5cf14b6 commit 3be894a
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

/**
* Basic implementation of {@link DateRange}
* @author AB
*
* @param <SELF> implementer
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

/**
* Actions which can be done with a {@link DateRangeModel}
*
* @author AB
*
* @param <D> DateRange
* @param <T> Implementer; returned as "Builder"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@

/**
* Model for {@link DateRangePicker}
*
* @author AB
*
*/
public class DateRangeModel<D extends DateRange> implements DateRangeActions<D, DateRangeModel<D>>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@

/**
* Result of a {@link DateRange} calculation
* @author AB
*
*/
public interface DateRangeResult
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@

/**
* Simple implementation if {@link AbstractDateRange}
*
* @author AB
*
*/
public class SimpleDateRange extends AbstractDateRange<SimpleDateRange>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

/**
* Simple implementation of {@link DateRangeResult}
*
* @author AB
*
*/
public class SimpleDateRangeResult implements DateRangeResult
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,12 @@

/**
* Contains predefined {@link SimpleDateRange SimpleDateRanges}
*
* @author AB
*
*/
@SuppressWarnings("checkstyle:MagicNumber")
public final class SimpleDateRanges
{
private SimpleDateRanges()
{
// No Impls
}

public static final SimpleDateRange TODAY = new SimpleDateRange()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,8 @@

/**
* Represents a Date-Range-Picker
*
* @author AB
*
*/
@SuppressWarnings("PMD.GodClass")
@SuppressWarnings({"PMD.GodClass", "java:S1948"})
@CssImport(DateRangePickerStyles.LOCATION)
public class DateRangePicker<D extends DateRange> extends Composite<VerticalLayout> implements
FlexComponent,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@

/**
* Overlay of the expanded {@link DateRangePicker}
*
* @author AB
*
*/
@SuppressWarnings("java:S1948")
@CssImport(DateRangePickerStyles.LOCATION)
public class DateRangePickerOverlay<D extends DateRange> extends Composite<VerticalLayout> implements
HasItems<D>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@

/**
* Styles for the {@link DateRangePicker}
*
* @author AB
*
*/
public final class DateRangePickerStyles
{
Expand Down

0 comments on commit 3be894a

Please sign in to comment.