Skip to content

Commit

Permalink
Remove author-only Javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
spannm committed Jun 22, 2024
1 parent d6c9f87 commit 8d23dc2
Show file tree
Hide file tree
Showing 70 changed files with 0 additions and 246 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@

import javax.script.Bindings;

/**
*
* @author James Ahlborn
*/
public abstract class BaseEvalContext implements EvalContext {
/** map of all non-string data types */
private static final Map<DataType, Value.Type> TYPE_MAP =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@

import java.io.IOException;

/**
*
* @author James Ahlborn
*/
public class CalcColEvalContext extends RowEvalContext {
private final ColumnImpl _col;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import io.github.spannm.jackcess.expr.Value;
import io.github.spannm.jackcess.impl.expr.Expressionator;

/**
*
* @author James Ahlborn
*/
public class ColDefaultValueEvalContext extends ColEvalContext {
public ColDefaultValueEvalContext(ColumnImpl col) {
super(col);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@

import io.github.spannm.jackcess.expr.Value;

/**
*
* @author James Ahlborn
*/
public abstract class ColEvalContext extends BaseEvalContext {
private final ColumnImpl _col;

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

import java.io.IOException;

/**
*
* @author James Ahlborn
*/
public class ColValidatorEvalContext extends ColEvalContext {
private String _helpStr;
private Object _val;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@
import javax.script.Bindings;
import javax.script.SimpleBindings;

/**
*
* @author James Ahlborn
*/
public class DBEvalContext implements Expressionator.ParseContext, EvalConfig {
private static final int MAX_CACHE_SIZE = 10;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
import java.util.*;
import java.util.regex.Pattern;

/**
* @author Tim McCune
*/
public class DatabaseImpl implements Database, DateTimeContext {
private static final Logger LOGGER = System.getLogger(DatabaseImpl.class.getName());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
import io.github.spannm.jackcess.expr.Identifier;
import io.github.spannm.jackcess.expr.Value;

/**
*
* @author James Ahlborn
*/
public abstract class RowEvalContext extends BaseEvalContext {
private Object[] _row;

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

import java.io.IOException;

/**
*
* @author James Ahlborn
*/
public class RowValidatorEvalContext extends RowEvalContext {
private final TableImpl _table;
private String _helpStr;
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/io/github/spannm/jackcess/impl/TopoSorter.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import java.util.ArrayList;
import java.util.List;

/**
*
* @author James Ahlborn
*/
public abstract class TopoSorter<E> {
public static final boolean REVERSE = true;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;

/**
*
* @author James Ahlborn
*/
public abstract class BaseDelayedValue implements Value {
private Value _val;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
import io.github.spannm.jackcess.expr.LocaleContext;
import io.github.spannm.jackcess.expr.Value;

/**
*
* @author James Ahlborn
*/
public abstract class BaseNumericValue extends BaseValue {

protected BaseNumericValue() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;

/**
*
* @author James Ahlborn
*/
public abstract class BaseValue implements Value {
@Override
public boolean isNull() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@

import java.math.BigDecimal;

/**
*
* @author James Ahlborn
*/
public class BigDecimalValue extends BaseNumericValue {
private final BigDecimal _val;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
import java.math.BigDecimal;
import java.util.regex.Pattern;

/**
*
* @author James Ahlborn
*/
public class BuiltinOperators {
private static final String DIV_BY_ZERO = "/ by zero";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@
import java.math.BigDecimal;
import java.time.LocalDateTime;

/**
*
* @author James Ahlborn
*/
public class DateTimeValue extends BaseValue {
private final Type _type;
private final LocalDateTime _val;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@
import java.time.temporal.TemporalAccessor;
import java.time.temporal.WeekFields;

/**
*
* @author James Ahlborn
*/
@SuppressWarnings("checkstyle.HideUtilityClassConstructor")
public class DefaultDateFunctions {
// min, valid, recognizable date: January 1, 100 A.D. 00:00:00
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ POI project (Apache Software Foundation) and the UCanAccess Project. They
import io.github.spannm.jackcess.expr.Value;
import io.github.spannm.jackcess.impl.expr.FunctionSupport.FuncVar;

/**
*
* @author James Ahlborn
*/
@SuppressWarnings("checkstyle.HideUtilityClassConstructor")
public class DefaultFinancialFunctions {
// Useful Sources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
import java.util.Map;
import java.util.regex.Matcher;

/**
* @author James Ahlborn
*/
public class DefaultFunctions {
private static final Map<String, Function> FUNCS = new HashMap<>();

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

import java.math.BigDecimal;

/**
*
* @author James Ahlborn
*/
@SuppressWarnings("checkstyle.HideUtilityClassConstructor")
public class DefaultNumberFunctions {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@
import java.util.Arrays;
import java.util.stream.Collectors;

/**
*
* @author James Ahlborn
*/
@SuppressWarnings("checkstyle.HideUtilityClassConstructor")
public class DefaultTextFunctions {
// mask to separate the case conversion value (first two bits) from the char
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@

import java.math.BigDecimal;

/**
*
* @author James Ahlborn
*/
public class DoubleValue extends BaseNumericValue {
private final Double _val;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@
import java.time.temporal.TemporalAccessor;
import java.util.*;

/**
*
* @author James Ahlborn
*/
class ExpressionTokenizer {
private static final int EOF = -1;
static final char QUOTED_STR_CHAR = '"';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@
import java.util.regex.PatternSyntaxException;
import java.util.stream.Stream;

/**
* @author James Ahlborn
*/
@SuppressWarnings({"PMD.UnnecessaryFullyQualifiedName", "PMD.FieldDeclarationsShouldBeAtStartOfClass"})
public class Expressionator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
import java.util.*;
import java.util.function.BiConsumer;

/**
* @author James Ahlborn
*/
@SuppressWarnings("PMD.FieldDeclarationsShouldBeAtStartOfClass")
public class FormatUtil {
public enum NumPatternType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@

import java.util.Arrays;

/**
*
* @author James Ahlborn
*/
public class FunctionSupport {
private static final char NON_VAR_SUFFIX = '$';

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

import java.math.BigDecimal;

/**
*
* @author James Ahlborn
*/
public class LongValue extends BaseNumericValue {
private final Integer _val;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
import java.math.RoundingMode;
import java.text.*;

/**
*
* @author James Ahlborn
*/
public class NumberFormatter {
public static final RoundingMode ROUND_MODE = RoundingMode.HALF_EVEN;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@
import java.math.BigDecimal;
import java.text.DecimalFormatSymbols;

/**
*
* @author James Ahlborn
*/
public class StringValue extends BaseValue {
private static final Object NOT_A_NUMBER = new Object();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@
import java.time.format.DateTimeFormatter;
import java.util.regex.Pattern;

/**
*
* @author James Ahlborn
*/
public class ValueSupport {
public static final Value NULL_VAL = new BaseValue() {
@Override
Expand Down
3 changes: 0 additions & 3 deletions src/test/java/io/github/spannm/jackcess/BigIndexTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@
import java.util.List;
import java.util.Random;

/**
* @author james
*/
class BigIndexTest extends AbstractBaseTest {

@ParameterizedTest(name = "[{index}] {0}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@
import java.util.Date;
import java.util.List;

/**
* @author James Ahlborn
*/
@SuppressWarnings("deprecation")
class ComplexColumnTest extends AbstractBaseTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
import io.github.spannm.jackcess.test.source.TestDbSource;
import org.junit.jupiter.params.ParameterizedTest;

/**
* @author James Ahlborn
*/
class CursorBuilderTest extends AbstractBaseTest {

@ParameterizedTest(name = "[{index}] {0}")
Expand Down
3 changes: 0 additions & 3 deletions src/test/java/io/github/spannm/jackcess/CursorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
import java.util.*;
import java.util.stream.Collectors;

/**
* @author James Ahlborn
*/
class CursorTest extends AbstractBaseTest {

@BeforeEach
Expand Down
3 changes: 0 additions & 3 deletions src/test/java/io/github/spannm/jackcess/DatabaseTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@
import java.util.*;
import java.util.stream.Collectors;

/**
* @author Tim McCune
*/
@SuppressWarnings("deprecation")
class DatabaseTest extends AbstractBaseTest {

Expand Down
3 changes: 0 additions & 3 deletions src/test/java/io/github/spannm/jackcess/LinkedTableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
import java.util.List;
import java.util.Map;

/**
* @author James Ahlborn
*/
class LinkedTableTest extends AbstractBaseTest {

@ParameterizedTest(name = "[{index}] {0}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
import java.time.format.DateTimeFormatter;
import java.util.*;

/**
* @author James Ahlborn
*/
class LocalDateTimeTest extends AbstractBaseTest {

@ParameterizedTest(name = "[{index}] {0}")
Expand Down
Loading

0 comments on commit 8d23dc2

Please sign in to comment.