Skip to content

Commit

Permalink
added javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
srinibharath authored and elsazac committed May 20, 2024
1 parent deb75d4 commit 261ae94
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ public boolean canExecute(@Optional Display display) {
}
return isEnabled;
}

/**
* Utilizes the {@code NSApplication} to access the application instance and
* invokes {@code arrangeInFront} to prioritize its window on the desktop <br>
*
* Note : This method is designed for MacOS applications using Cocoa framework
* API's
*/
@Execute
public void execute() {
NSApplication app = NSApplication.sharedApplication();
Expand Down

0 comments on commit 261ae94

Please sign in to comment.