BUG-6316: Fix Bit and EnumPair's position/value types
[mdsal.git] / binding / mdsal-binding-generator-util / src / main / java / org / opendaylight / yangtools / binding / generator / util / ReferencedTypeImpl.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.binding.generator.util;
9
10 /**
11  * 
12  * Wraps combination of <code>packageName</code> and <code>name</code> to the
13  * object representation
14  * 
15  */
16 public final class ReferencedTypeImpl extends AbstractBaseType {
17
18     /**
19      * Creates instance of this class with concrete package name and type name
20      * 
21      * @param packageName
22      *            string with the package name
23      * @param name
24      *            string with the name for referenced type
25      */
26     public ReferencedTypeImpl(String packageName, String name) {
27         super(packageName, name);
28     }
29
30     @Override
31     public String toString() {
32         StringBuilder builder = new StringBuilder();
33         builder.append("ReferencedTypeImpl [packageName=");
34         builder.append(getPackageName());
35         builder.append(", name=");
36         builder.append(getName());
37         builder.append("]");
38         return builder.toString();
39     }
40 }