Add style to track.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 17 Apr 2012 15:47:52 +0000 (17:47 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 17 Apr 2012 15:47:52 +0000 (17:47 +0200)
src/main/java/net/pterodactylus/demoscenemusic/data/Track.java

index 293c25e..77a350a 100644 (file)
@@ -25,6 +25,7 @@ package net.pterodactylus.demoscenemusic.data;
 public class Track extends Base {
 
        private String name;
+       private String style;
 
        public Track(String id) {
                super(id);
@@ -39,4 +40,13 @@ public class Track extends Base {
                return this;
        }
 
+       public String style() {
+               return style;
+       }
+
+       public Track style(String style) {
+               this.style = style;
+               return this;
+       }
+
 }