From dc182c1007455256e7a064ff9b0bedfd9a7a7a74 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Mon, 18 Feb 2013 21:57:29 +0100 Subject: [PATCH] Add accessor for torrent files. --- .../java/net/pterodactylus/rhynodge/states/TorrentState.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/java/net/pterodactylus/rhynodge/states/TorrentState.java b/src/main/java/net/pterodactylus/rhynodge/states/TorrentState.java index ddcd518..22da77f 100644 --- a/src/main/java/net/pterodactylus/rhynodge/states/TorrentState.java +++ b/src/main/java/net/pterodactylus/rhynodge/states/TorrentState.java @@ -18,6 +18,8 @@ package net.pterodactylus.rhynodge.states; import java.nio.charset.Charset; +import java.util.Collection; +import java.util.Collections; import java.util.Iterator; import java.util.List; @@ -47,6 +49,15 @@ public class TorrentState extends AbstractState implements Iterable // /** + * Returns all torrent files of this state. + * + * @return All torrent files of this state + */ + public Collection torrentFiles() { + return Collections.unmodifiableList(files); + } + + /** * Adds a torrent file to this state. * * @param torrentFile -- 2.7.4