Add ModuleQName annotation.
[yangtools.git] / concepts / src / main / java / org / opendaylight / yangtools / concepts / Delegator.java
1 package org.opendaylight.yangtools.concepts;
2
3 /**
4  * Implementation of this interface delegates all it's calls
5  * to the delegator if not specified otherwise.
6  * 
7  *
8  * @param <T> Type of delegate
9  */
10 public interface Delegator<T> {
11
12     T getDelegate();
13
14 }