Move event and metadata handling into abstract base class.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / event / MetadataUpdated.java
diff --git a/src/main/java/net/pterodactylus/sonitus/data/event/MetadataUpdated.java b/src/main/java/net/pterodactylus/sonitus/data/event/MetadataUpdated.java
deleted file mode 100644 (file)
index d60f33a..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Sonitus - MetadataUpdated.java - Copyright © 2013 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 <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sonitus.data.event;
-
-import net.pterodactylus.sonitus.data.ControlledComponent;
-import net.pterodactylus.sonitus.data.Metadata;
-
-/**
- * Event that notifies all listeners that the {@link Metadata} of a {@link
- * ControlledComponent} component was changed.
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
- */
-public class MetadataUpdated {
-
-       /** The controlled component. */
-       private final ControlledComponent controlledComponent;
-
-       /** The new metadata. */
-       private final Metadata metadata;
-
-       /**
-        * Creates a new metadata updated event.
-        *
-        * @param controlledComponent
-        *              The controlled component
-        * @param metadata
-        *              The new metadata
-        */
-       public MetadataUpdated(ControlledComponent controlledComponent, Metadata metadata) {
-               this.controlledComponent = controlledComponent;
-               this.metadata = metadata;
-       }
-
-       //
-       // ACCESSORS
-       //
-
-       /**
-        * Returns the controlled component.
-        *
-        * @return The controlled component
-        */
-       public ControlledComponent controlled() {
-               return controlledComponent;
-       }
-
-       /**
-        * Returns the new metadata.
-        *
-        * @return The new metadata
-        */
-       public Metadata metadata() {
-               return metadata;
-       }
-
-}