-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also continuing updates to take advantage of the newer Java version we build against, fix typos in documentation, and switch to explicit API annotations to indicate project entry points.
- Loading branch information
Showing
20 changed files
with
920 additions
and
944 deletions.
There are no files selected for viewing
1,109 changes: 510 additions & 599 deletions
1,109
src/main/java/org/deepsymmetry/beatlink/data/MenuLoader.java
Large diffs are not rendered by default.
Oops, something went wrong.
192 changes: 91 additions & 101 deletions
192
src/main/java/org/deepsymmetry/beatlink/data/MetadataFinder.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/main/java/org/deepsymmetry/beatlink/data/OverlayPainter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
package org.deepsymmetry.beatlink.data; | ||
|
||
import org.apiguardian.api.API; | ||
|
||
import java.awt.*; | ||
|
||
/** | ||
* In order to make it easy for applications like Beat Link Trigger to overlay selections or cues on the GUI | ||
* components offered by Beat Link, they allow an overlay painter to be registered with them, and it will then | ||
* be invoked after the component has done its own painting. | ||
*/ | ||
@SuppressWarnings("WeakerAccess") | ||
@API(status = API.Status.STABLE) | ||
public interface OverlayPainter { | ||
/** | ||
* Paint the overlay on top of the component, which has finished doing its own painting. | ||
* | ||
* @param c the component that has just painted itself | ||
* @param g the graphics content in which painting is taking place | ||
*/ | ||
@API(status = API.Status.STABLE) | ||
void paintOverlay(Component c, Graphics g); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.