X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2Fevent%2FSoneLockedEvent.java;fp=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fcore%2Fevent%2FSoneLockedEvent.java;h=a707aca7a4e79c1afb3e0dc32d6fb94862258167;hb=de3f83202862d1b12505eff4da668a736a355b72;hp=0000000000000000000000000000000000000000;hpb=fdcd6fa4e0110028080d0b4a9ef3c5f8e5a5e867;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/core/event/SoneLockedEvent.java b/src/main/java/net/pterodactylus/sone/core/event/SoneLockedEvent.java new file mode 100644 index 0000000..a707aca --- /dev/null +++ b/src/main/java/net/pterodactylus/sone/core/event/SoneLockedEvent.java @@ -0,0 +1,40 @@ +/* + * Sone - SoneLockedEvent.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 . + */ + +package net.pterodactylus.sone.core.event; + +import net.pterodactylus.sone.data.Sone; + +/** + * Event that signals that a {@link Sone} was locked. Only + * {@link Sone#isLocal() local Sones} can be locked. + * + * @author David ‘Bombe’ Roden + */ +public class SoneLockedEvent extends SoneEvent { + + /** + * Creates a new “Sone locked” event. + * + * @param sone + * The Sone that was locked + */ + public SoneLockedEvent(Sone sone) { + super(sone); + } + +}