2 * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.yang.model.parser.builder.api;
10 import org.opendaylight.controller.yang.model.api.TypeDefinition;
13 * Basic implementation for TypeAwareBuilder builders.
15 public class AbstractTypeAwareBuilder implements TypeAwareBuilder {
17 protected TypeDefinition<?> type;
18 protected TypeDefinitionBuilder typedef;
21 public TypeDefinition<?> getType() {
26 public TypeDefinitionBuilder getTypedef() {
31 public void setType(TypeDefinition<?> type) {
37 public void setType(TypeDefinitionBuilder typedef) {
38 this.typedef = typedef;