X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FParty.java;h=8ce4bccb90f061b1dd276e3214f880d9a27de056;hb=e3ac92367c0fde656598f388e9026f45c2868c4b;hp=4e2e93baff80d11cf382db2bdeedbbfcf238bd09;hpb=a8592c3929b25575caf258d4d6a46b96a79ec609;p=demoscenemusic.git diff --git a/src/main/java/net/pterodactylus/demoscenemusic/data/Party.java b/src/main/java/net/pterodactylus/demoscenemusic/data/Party.java index 4e2e93b..8ce4bcc 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Party.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Party.java @@ -17,16 +17,27 @@ package net.pterodactylus.demoscenemusic.data; - /** - * TODO + * Data interface for parties. * * @author David ‘Bombe’ Roden */ public interface Party extends Base { + /** + * Returns the name of this party. + * + * @return The name of this party + */ public String getName(); + /** + * Sets the name of this party. + * + * @param name + * The name of this party + * @return This party + */ public Party setName(String name); }