From: David ‘Bombe’ Roden Date: Tue, 2 Dec 2014 19:22:04 +0000 (+0100) Subject: Add interface for a local, i.e. mutable Sone. X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=commitdiff_plain;h=d59c113b1506204ba3ee6162ec523bd754d48cf8 Add interface for a local, i.e. mutable Sone. --- diff --git a/src/main/java/net/pterodactylus/sone/data/LocalSone.java b/src/main/java/net/pterodactylus/sone/data/LocalSone.java new file mode 100644 index 0000000..cd82656 --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/data/LocalSone.java @@ -0,0 +1,11 @@ +package net.pterodactylus.sone.data; + +/** + * A local, i.e. mutable {@link Sone} instance. All modifications of a Sone or its objects has to go + * through this object. + * + * @author David ‘Bombe’ Roden + */ +public interface LocalSone extends Sone { + +}