Skip to content

Commit

Permalink
make javadoc pass
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed May 31, 2024
1 parent 2aa1def commit b5bde58
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/ai/nets/samj/ij/ui/IJ1PromptsProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@ public class IJ1PromptsProvider implements PromptsResultsDisplay, MouseListener,
/**
* Consumer to alter the state of the Rectangle ROI button
*/
private BooleanConsumer rectIconConsumer;
private PromptsResultsDisplay.BooleanConsumer rectIconConsumer;
/**
* Consumer to alter the state of the Points ROI button
*/
private BooleanConsumer pointsIconConsumer;
private PromptsResultsDisplay.BooleanConsumer pointsIconConsumer;
/**
* Consumer to alter the state of the Freeline ROI button
*/
private BooleanConsumer freelineIconConsumer;
private PromptsResultsDisplay.BooleanConsumer freelineIconConsumer;
/**
* The number of words per line in the error message dialogs
*/
Expand Down Expand Up @@ -630,17 +630,17 @@ public void improveExistingMask(File mask) {
}

@Override
public void setRectIconConsumer(BooleanConsumer consumer) {
public void setRectIconConsumer(PromptsResultsDisplay.BooleanConsumer consumer) {
this.rectIconConsumer = consumer;
}

@Override
public void setPointsIconConsumer(BooleanConsumer consumer) {
public void setPointsIconConsumer(PromptsResultsDisplay.BooleanConsumer consumer) {
this.pointsIconConsumer = consumer;
}

@Override
public void setFreelineIconConsumer(BooleanConsumer consumer) {
public void setFreelineIconConsumer(PromptsResultsDisplay.BooleanConsumer consumer) {
this.freelineIconConsumer = consumer;
}

Expand Down

0 comments on commit b5bde58

Please sign in to comment.