All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.configuration2.event.EventListenerRegistrationData Maven / Gradle / Ivy

Go to download

Tools to assist in the reading of configuration/preferences files in various formats

There is a newer version: 2.10.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.commons.configuration2.event;

/**
 * 

* A data class holding information about an event listener registration. *

*

* An instance of this class stores all information required to determine * whether a specific event listener is to be invoked for a given event. The * class is used internally by {@link EventListenerList}, but is also useful in * general when information about event listeners is to be stored. *

*

* Implementation note: Instances of this class are immutable and can safely be * shared between multiple threads or components. *

* * @since 2.0 * @param the type of events processed by the listener */ public final class EventListenerRegistrationData { /** Constant for the factor used by the calculation of the hash code. */ private static final int HASH_FACTOR = 31; /** The event type. */ private final EventType eventType; /** The event listener. */ private final EventListener listener; /** * Creates a new instance of {@code EventListenerRegistrationData}. * * @param type the event type (must not be null) * @param lstnr the event listener (must not be null) * @throws IllegalArgumentException if a required parameter is null */ public EventListenerRegistrationData(final EventType type, final EventListener lstnr) { if (type == null) { throw new IllegalArgumentException("Event type must not be null!"); } if (lstnr == null) { throw new IllegalArgumentException( "Listener to be registered must not be null!"); } eventType = type; listener = lstnr; } /** * Returns the event type for this listener registration. * * @return the event type */ public EventType getEventType() { return eventType; } /** * Returns the listener this registration is about. * * @return the event listener */ public EventListener getListener() { return listener; } @Override public int hashCode() { int result = eventType.hashCode(); result = HASH_FACTOR * result + listener.hashCode(); return result; } /** * Compares this object with another one. Two instances of * {@code EventListenerRegistrationData} are considered equal if they * reference the same listener and event type. * * @param obj the object to be compared to * @return a flag whether these objects are equal */ @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (!(obj instanceof EventListenerRegistrationData)) { return false; } final EventListenerRegistrationData c = (EventListenerRegistrationData) obj; return getListener() == c.getListener() && getEventType().equals(c.getEventType()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy