Skip to content

Commit

Permalink
apparently lombok getter/setter was generating javadoc output
Browse files Browse the repository at this point in the history
  • Loading branch information
JuicyDragon committed Oct 4, 2024
1 parent 77a24eb commit 0b4248b
Show file tree
Hide file tree
Showing 7 changed files with 82 additions and 7 deletions.
25 changes: 23 additions & 2 deletions Nx/src/main/java/com/nuix/nx/dialogs/ProcessingStatusDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,31 @@ public class ProcessingStatusDialog extends JDialog {
private JButton btnClose;
private Timer autoCloseTimer;

@Getter
@Setter



private int autoCloseDelaySeconds = 60;

/***
* Gets how long the dialog should remain open after processing completes. After this time period, the
* dialog will close itself. A value of 0 will disable automatic closing of the dialog.
* @return The delay in seconds the dialog will wait before closing itself. A value of 0 means that
* the dialog will remain open until the user dismisses it.
*/
public int getAutoCloseDelaySeconds() {
return autoCloseDelaySeconds;
}

/***
* Sets how long the dialog should remain open after processing completes. After this time period, the
* dialog will close itself. A value of 0 will disable automatic closing of the dialog.
* @param autoCloseDelaySeconds How long in seconds to wait before auto closing the dialog. A value of
* 0 will leave the dialog visible until the user dismisses it.
*/
public void setAutoCloseDelaySeconds(int autoCloseDelaySeconds) {
this.autoCloseDelaySeconds = autoCloseDelaySeconds;
}

/***
* Gets whether the job was aborted
* @return True if the job was aborted thru the interface
Expand Down
54 changes: 50 additions & 4 deletions docs/com/nuix/nx/dialogs/ProcessingStatusDialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
catch(err) {
}
//-->
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
Expand Down Expand Up @@ -313,33 +313,47 @@ <h3>Method Summary</h3>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAutoCloseDelaySeconds()">getAutoCloseDelaySeconds</a></span>()</code></th>
<td class="colLast">
<div class="block">Gets how long the dialog should remain open after processing completes.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getJobWasAborted()">getJobWasAborted</a></span>()</code></th>
<td class="colLast">
<div class="block">Gets whether the job was aborted</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getJobWasStopped()">getJobWasStopped</a></span>()</code></th>
<td class="colLast">
<div class="block">Gets whether the job was stopped</div>
</td>
</tr>
<tr id="i4" class="altColor">
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#log(java.lang.String)">log</a></span>&#8203;(java.lang.String&nbsp;message)</code></th>
<td class="colLast">
<div class="block">Logs a message to the log text area and the Nuix logs</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#removeProcessingFinishedListener(com.nuix.nx.controls.ProcessingFinishedListener)">removeProcessingFinishedListener</a></span>&#8203;(<a href="../controls/ProcessingFinishedListener.html" title="interface in com.nuix.nx.controls">ProcessingFinishedListener</a>&nbsp;listener)</code></th>
<td class="colLast">
<div class="block">Removes a previously added callback</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>void</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#setAutoCloseDelaySeconds(int)">setAutoCloseDelaySeconds</a></span>&#8203;(int&nbsp;autoCloseDelaySeconds)</code></th>
<td class="colLast">
<div class="block">Sets how long the dialog should remain open after processing completes.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.javax.swing.JDialog">
Expand Down Expand Up @@ -418,6 +432,38 @@ <h4>ProcessingStatusDialog</h4>
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="getAutoCloseDelaySeconds()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAutoCloseDelaySeconds</h4>
<pre class="methodSignature">public&nbsp;int&nbsp;getAutoCloseDelaySeconds()</pre>
<div class="block">Gets how long the dialog should remain open after processing completes. After this time period, the
dialog will close itself. A value of 0 will disable automatic closing of the dialog.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The delay in seconds the dialog will wait before closing itself. A value of 0 means that
the dialog will remain open until the user dismisses it.</dd>
</dl>
</li>
</ul>
<a id="setAutoCloseDelaySeconds(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setAutoCloseDelaySeconds</h4>
<pre class="methodSignature">public&nbsp;void&nbsp;setAutoCloseDelaySeconds&#8203;(int&nbsp;autoCloseDelaySeconds)</pre>
<div class="block">Sets how long the dialog should remain open after processing completes. After this time period, the
dialog will close itself. A value of 0 will disable automatic closing of the dialog.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>autoCloseDelaySeconds</code> - How long in seconds to wait before auto closing the dialog. A value of
0 will leave the dialog visible until the user dismisses it.</dd>
</dl>
</li>
</ul>
<a id="getJobWasAborted()">
<!-- -->
</a>
Expand Down
8 changes: 8 additions & 0 deletions docs/index-all.html
Original file line number Diff line number Diff line change
Expand Up @@ -1172,6 +1172,10 @@ <h2 class="title">G</h2>
<dd>
<div class="block">Gets whether the abort button is currently visible.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/nuix/nx/dialogs/ProcessingStatusDialog.html#getAutoCloseDelaySeconds()">getAutoCloseDelaySeconds()</a></span> - Method in class com.nuix.nx.dialogs.<a href="com/nuix/nx/dialogs/ProcessingStatusDialog.html" title="class in com.nuix.nx.dialogs">ProcessingStatusDialog</a></dt>
<dd>
<div class="block">Gets how long the dialog should remain open after processing completes.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/nuix/nx/controls/DynamicTableControl.html#getBtnAddRecord()">getBtnAddRecord()</a></span> - Method in class com.nuix.nx.controls.<a href="com/nuix/nx/controls/DynamicTableControl.html" title="class in com.nuix.nx.controls">DynamicTableControl</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="com/nuix/nx/controls/StringList.html#getBtnImportFile()">getBtnImportFile()</a></span> - Method in class com.nuix.nx.controls.<a href="com/nuix/nx/controls/StringList.html" title="class in com.nuix.nx.controls">StringList</a></dt>
Expand Down Expand Up @@ -2567,6 +2571,10 @@ <h2 class="title">S</h2>
<dd>
<div class="block">Sets whether the abort button should be visible.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/nuix/nx/dialogs/ProcessingStatusDialog.html#setAutoCloseDelaySeconds(int)">setAutoCloseDelaySeconds(int)</a></span> - Method in class com.nuix.nx.dialogs.<a href="com/nuix/nx/dialogs/ProcessingStatusDialog.html" title="class in com.nuix.nx.dialogs">ProcessingStatusDialog</a></dt>
<dd>
<div class="block">Sets how long the dialog should remain open after processing completes.</div>
</dd>
<dt><span class="memberNameLink"><a href="com/nuix/nx/NuixVersion.html#setBugfix(int)">setBugfix(int)</a></span> - Method in class com.nuix.nx.<a href="com/nuix/nx/NuixVersion.html" title="class in com.nuix.nx">NuixVersion</a></dt>
<dd>
<div class="block">Sets the determined bugfix portion of this version instance (0.0.x.0)</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/member-search-index.js

Large diffs are not rendered by default.

Binary file modified docs/member-search-index.zip
Binary file not shown.
Binary file modified docs/package-search-index.zip
Binary file not shown.
Binary file modified docs/type-search-index.zip
Binary file not shown.

0 comments on commit 0b4248b

Please sign in to comment.