diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-10-02 13:31:00 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-10-02 13:31:00 -0700 |
commit | 1704177fbd4327c956d2fdfd5b70c5529c5ae019 (patch) | |
tree | a911a0258c62b8fe5c3a975da1145eff2174a91a /src/github | |
parent | d29d9b4dcb9029a88eb956ac283e4807ba9b6367 (diff) | |
download | dsub-1704177fbd4327c956d2fdfd5b70c5529c5ae019.tar.gz dsub-1704177fbd4327c956d2fdfd5b70c5529c5ae019.tar.bz2 dsub-1704177fbd4327c956d2fdfd5b70c5529c5ae019.zip |
Add method to retrieve SongView's downloadFile
Diffstat (limited to 'src/github')
-rw-r--r-- | src/github/daneren2005/dsub/view/SongView.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/view/SongView.java b/src/github/daneren2005/dsub/view/SongView.java index f795cbce..0fe19944 100644 --- a/src/github/daneren2005/dsub/view/SongView.java +++ b/src/github/daneren2005/dsub/view/SongView.java @@ -161,6 +161,10 @@ public class SongView extends UpdateView implements Checkable { dontChangeDownloadFile = true; } + public DownloadFile getDownloadFile() { + return downloadFile; + } + @Override protected void updateBackground() { if (downloadService == null) { |