X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FPart.java;h=76e80ef6ad14b2936beedbdd38b7b49eb3c6c73f;hp=b9083b7617437f3fc1d4346c80650686ba8dcf0e;hb=a47643aed43d118ca68044f95451bb5374cdb332;hpb=967adc51224c9cfc5ce3fe36faa8ecd6e31959b3 diff --git a/src/main/java/net/pterodactylus/sone/text/Part.java b/src/main/java/net/pterodactylus/sone/text/Part.java index b9083b7..76e80ef 100644 --- a/src/main/java/net/pterodactylus/sone/text/Part.java +++ b/src/main/java/net/pterodactylus/sone/text/Part.java @@ -1,5 +1,5 @@ /* - * Sone - Part.java - Copyright © 2010 David Roden + * Sone - Part.java - Copyright © 2010–2012 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,16 +17,15 @@ package net.pterodactylus.sone.text; -import net.pterodactylus.util.io.Renderable; - /** * A part is a single piece of information that can be displayed as a single - * element. + * element. How the part is displayed is not part of the {@code Part} + * specification. * * @author David ‘Bombe’ Roden */ -public interface Part extends Renderable { +public interface Part { - /* all required methods are inherited from {@link Renderable}. */ + /* no methods. */ }