fa3aa5001d188bd0c30564a057d78b4c58a74631
[mdsal.git] / code-generator / binding-data-codec / src / main / java / org / opendaylight / yangtools / binding / data / codec / impl / ReflectionBasedCodec.java
1 /*
2  * Copyright (c) 2014 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.binding.data.codec.impl;
9
10 abstract class ReflectionBasedCodec extends ValueTypeCodec {
11
12     protected final Class<?> typeClass;
13
14     public ReflectionBasedCodec(final Class<?> typeClass) {
15         super();
16         this.typeClass = typeClass;
17     }
18 }