Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

NickListEvent.java 441B

12345678910111213141516171819
  1. package com.dmdirc.events;
  2. import com.dmdirc.interfaces.GroupChat;
  3. import java.time.LocalDateTime;
  4. /**
  5. * Base class for all nicklist events in a {@link GroupChat}.
  6. */
  7. public abstract class NickListEvent extends ChannelEvent {
  8. public NickListEvent(final LocalDateTime timestamp, final GroupChat channel) {
  9. super(timestamp, channel);
  10. }
  11. public NickListEvent(final GroupChat channel) {
  12. super(channel);
  13. }
  14. }