Skip to content

Commit

Permalink
Use No-argument instead of No-arg
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed Dec 22, 2024
1 parent 0f644a5 commit 3e1f524
Show file tree
Hide file tree
Showing 116 changed files with 125 additions and 125 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/classifier/Sample.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class Sample
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB unmarshalling.
* No-argument constructor needed for JAXB unmarshalling.
*/
private Sample ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/classifier/Tribe.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class Tribe
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private Tribe ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public class SampleBrowser
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor, used when in stand-alone.
* No-argument constructor, used when in stand-alone.
*/
public SampleBrowser ()
{
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/org/audiveris/omr/glyph/Glyph.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public class Glyph
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private Glyph ()
{
Expand All @@ -159,7 +159,7 @@ public Glyph (int left,
this.top = top;

///Objects.requireNonNull(runTable, "Glyph created with null runTable");
// NOTA: We must accept null RunTable for the Sample no-arg constructor
// NOTA: We must accept null RunTable for the Sample No-argument constructor
this.runTable = runTable;
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/glyph/SectionSets.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class SectionSets

//~ Constructors -------------------------------------------------------------------------------

// No-arg constructor needed by JAXB
// No-argument constructor needed by JAXB
private SectionSets ()
{
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class GlobalDescriptor
@XmlAttribute(name = "threshold")
public final int threshold;

/** No-arg constructor meant for JAXB. */
/** No-argument constructor meant for JAXB. */
private GlobalDescriptor ()
{
threshold = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public class NeuralNetwork

//~ Constructors -------------------------------------------------------------------------------

/** Private no-arg constructor meant for the JAXB compiler only. */
/** Private No-argument constructor meant for the JAXB compiler only. */
private NeuralNetwork ()
{
inputSize = -1;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/math/Range.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class Range

//~ Constructors -------------------------------------------------------------------------------

/** No-arg constructor meant for JAXB. */
/** No-argument constructor meant for JAXB. */
private Range ()
{
this.min = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class GeometricMoments
// GeometricMoments //
//------------------//
/**
* No-arg constructor, needed for XML binder.
* No-argument constructor, needed for XML binder.
*/
public GeometricMoments ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/plugin/Plugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class Plugin
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private Plugin ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private static class PluginsHolder
@XmlElementRef
private List<Plugin> list = new ArrayList<>();

/** No-arg constructor meant for JAXB. */
/** No-argument constructor meant for JAXB. */
private PluginsHolder ()
{
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/run/RunTable.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public class RunTable
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor, needed for JAXB.
* No-argument constructor, needed for JAXB.
*/
private RunTable ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/score/Page.java
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public class Page
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private Page ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/score/PageNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class PageNumber
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private PageNumber ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/score/PageRef.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public class PageRef
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private PageRef ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private static class Strings
@XmlElement(name = "pattern")
private List<String> list = new ArrayList<>();

/** No-arg constructor meant for JAXB. */
/** No-argument constructor meant for JAXB. */
private Strings ()
{
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Book.java
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public class Book
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed by JAXB.
* No-argument constructor needed by JAXB.
*/
@SuppressWarnings("unused")
private Book ()
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/DataHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public abstract class DataHolder<T>
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
protected DataHolder ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/ImageHolder.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class ImageHolder

//~ Constructors -------------------------------------------------------------------------------

/** No-arg constructor needed for JAXB. */
/** No-argument constructor needed for JAXB. */
private ImageHolder ()
{
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class OneLineStaff
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
public OneLineStaff ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Part.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public class Part
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private Part ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class RunTableHolder

private static JAXBContext jaxbContext;

/** No-arg constructor needed for JAXB. */
/** No-argument constructor needed for JAXB. */
private RunTableHolder ()
{
super();
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/java/org/audiveris/omr/sheet/Scale.java
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ public static class BeamScale
private final Boolean extra;

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private BeamScale ()
{
Expand Down Expand Up @@ -1019,7 +1019,7 @@ public static class BlackHeadScale
final double heightStd;

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private BlackHeadScale ()
{
Expand Down Expand Up @@ -1528,7 +1528,7 @@ public static class StemScale
private final int max;

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private StemScale ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Sheet.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public class Sheet
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private Sheet ()
{
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/org/audiveris/omr/sheet/SheetStub.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public class SheetStub
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private SheetStub ()
{
Expand Down Expand Up @@ -1760,7 +1760,7 @@ public static class SheetInput
@XmlElement(name = "number")
public final int number;

/** No-arg constructor needed for JAXB. */
/** No-argument constructor needed for JAXB. */
private SheetInput ()
{
path = null;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Skew.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class Skew
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
public Skew ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Staff.java
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public class Staff
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
public Staff ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/StaffLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class StaffLine
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
@SuppressWarnings("unused")
private StaffLine ()
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/SystemInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public class SystemInfo
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private SystemInfo ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public class SystemManager
private final List<SystemInfo> systems = new ArrayList<>();

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private SystemManager ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/Tablature.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class Tablature
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
public Tablature ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class OldBeamGroup
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private OldBeamGroup ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class PartGroup
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private PartGroup ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public class StaffHeader
public Range timeRange;

/**
* No-arg constructor needed for JAXB.
* No-argument constructor needed for JAXB.
*/
private StaffHeader ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ private static class HeadSeed
@XmlJavaTypeAdapter(Jaxb.Double1Adapter.class)
public final Double dx;

// No-arg constructor needed by JAXB
// No-argument constructor needed by JAXB
@SuppressWarnings("unused")
private HeadSeed ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public class Measure
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
@SuppressWarnings("unused")
private Measure ()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public class MeasureStack
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private MeasureStack ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sheet/rhythm/Slot.java
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class Slot
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private Slot ()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public class Voice
//~ Constructors -------------------------------------------------------------------------------

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private Voice ()
{
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/audiveris/omr/sig/SIGraph.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class SIGraph
private SigValue sigValue;

/**
* No-arg constructor meant for JAXB.
* No-argument constructor meant for JAXB.
*/
private SIGraph ()
{
Expand Down
Loading

0 comments on commit 3e1f524

Please sign in to comment.