X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FBase.java;h=56559ce1699627c0dc7a86cd22130c5ae0c30069;hb=6824ff7746ed9f1d6d7b68d24d3d02686f2218ac;hp=7a364930149e776933b7c2342e1e3e89b2138a30;hpb=58c1eab4c13e3d9b3f63d902d59d666c7513273d;p=demoscenemusic.git diff --git a/src/main/java/net/pterodactylus/demoscenemusic/data/Base.java b/src/main/java/net/pterodactylus/demoscenemusic/data/Base.java index 7a36493..56559ce 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/Base.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/Base.java @@ -17,14 +17,25 @@ package net.pterodactylus.demoscenemusic.data; - /** - * TODO + * Base class for all data interfaces and implementations. * * @author David ‘Bombe’ Roden */ public interface Base { - public String id(); + /** + * Returns the ID of the data container. + * + * @return The ID of the data container + */ + public String getId(); + + /** + * Returns the properties associated with this object. + * + * @return The properties of this object + */ + public Properties getProperties(); }