X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FPart.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftext%2FPart.java;h=0000000000000000000000000000000000000000;hp=e516f0ad20a2b29b0c1368a8dd19358b87ef7692;hb=de6d73a2f0718ff65832859a3ef7ba4f32299327;hpb=4273a6ebdde8c4f1092a6c5d4f62ad483f3eaa96 diff --git a/src/main/java/net/pterodactylus/sone/text/Part.java b/src/main/java/net/pterodactylus/sone/text/Part.java deleted file mode 100644 index e516f0a..0000000 --- a/src/main/java/net/pterodactylus/sone/text/Part.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Sone - Part.java - Copyright © 2010–2016 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 - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package net.pterodactylus.sone.text; - -/** - * A part is a single piece of information that can be displayed as a single - * element. How the part is displayed is not part of the {@code Part} - * specification. - * - * @author David ‘Bombe’ Roden - */ -public interface Part { - - /** - * Returns the text contained in this part. This should return plain text - * without any format information. - * - * @return The plain text of this part - */ - public String getText(); - -}