X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fdemoscenemusic%2Fdata%2FDefaultBase.java;h=56b37c4d399f813cebe19f0c981c8980015026af;hb=7d564a0d18ae3385677021e396a02b9fbedd8f94;hp=345ebd29d972af3562a4e223fe4a70475d0f7095;hpb=e3ac92367c0fde656598f388e9026f45c2868c4b;p=demoscenemusic.git diff --git a/src/main/java/net/pterodactylus/demoscenemusic/data/DefaultBase.java b/src/main/java/net/pterodactylus/demoscenemusic/data/DefaultBase.java index 345ebd2..56b37c4 100644 --- a/src/main/java/net/pterodactylus/demoscenemusic/data/DefaultBase.java +++ b/src/main/java/net/pterodactylus/demoscenemusic/data/DefaultBase.java @@ -35,6 +35,9 @@ public class DefaultBase implements Base { /** The attributes of the data container. */ private final Map> attributes = new HashMap>(); + /** The properties of the data container. */ + private final Properties properties = new Properties(); + /** * Creates a new data container with the given ID. * @@ -58,6 +61,14 @@ public class DefaultBase implements Base { } /** + * {@inheritDoc} + */ + @Override + public Properties getProperties() { + return properties; + } + + /** * Returns whether the data container contains an attribute with the given * name. *