Improved documentation of BindingReflections.
[yangtools.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / NotificationListener.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.binding;
9
10 import java.util.EventListener;
11
12 /**
13  * Marker interface for generated notification listener interfaces
14  * 
15  * <p>
16  * The subclasses of this interface have callbacks for events, which are derived
17  * from {@link Notification} class in form void
18  * on{NotificationType}(NotificationType notification).
19  * 
20  * <p>
21  * E.g. if we have notification SessionUp the callback will have signature:
22  * <code>void  onSessionUp(SessionUp notification)</code>
23  * 
24  * 
25  */
26 public interface NotificationListener extends EventListener {
27
28 }