7225 document new method arguments

This commit is contained in:
William Schaefer 2021-01-14 16:21:59 -05:00
parent 6092ef4b6b
commit 31ee0183cd
2 changed files with 4 additions and 2 deletions

View File

@ -284,6 +284,7 @@ public final class DiscoveryEventUtils {
*
* @param results The list of MiniTimelineResults contained in this
* event.
* @param domain The domain the results are for.
*/
public MiniTimelineResultEvent(List<MiniTimelineResult> results, String domain) {
if (results != null) {
@ -306,7 +307,7 @@ public final class DiscoveryEventUtils {
*
* @return The domain the list of results is for.
*/
public String getDomain(){
public String getDomain() {
return domain;
}
}

View File

@ -104,7 +104,8 @@ final class MiniTimelinePanel extends javax.swing.JPanel {
/**
* Manually set the status of the panel.
*
* @param status The ArtifactRetrievalStatus of the panel.
* @param status The ArtifactRetrievalStatus of the panel
* @param domain The domain the panel is currently reflecting.
*/
@ThreadConfined(type = ThreadConfined.ThreadType.AWT)
void setStatus(DomainArtifactsTabPanel.ArtifactRetrievalStatus status, String domain) {