BUG-865: deprecate internal implementation classes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / DerivedBitsType.java
1 /*
2  * Copyright (c) 2015 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.model.util;
9
10 import java.util.List;
11 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
12
13 /**
14  * @deprecated Deprecated {@link DerivedType} subclass.
15  */
16 @Deprecated
17 class DerivedBitsType extends DerivedType<BitsTypeDefinition> implements BitsTypeDefinition {
18
19     public DerivedBitsType(final ExtendedType definition) {
20         super(BitsTypeDefinition.class, definition);
21     }
22
23     @Override
24     BitsTypeDefinition createDerived(final ExtendedType base) {
25         return new DerivedBitsType(base);
26     }
27
28     @Override
29     public List<Bit> getBits() {
30         return getBaseType().getBits();
31     }
32 }