BUG-865: deprecate pre-Beryllium parser elements
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / api / AugmentationTargetBuilder.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.yang.parser.builder.api;
9
10 /**
11  * Interface for builders of those nodes, which can be augmentation targets.
12  *
13  * @deprecated Pre-Beryllium implementation, scheduled for removal.
14  */
15 @Deprecated
16 public interface AugmentationTargetBuilder {
17
18     /**
19      * Add augment, which points to this node.
20      *
21      * @param augment
22      *            augment which points to this node
23      */
24     void addAugmentation(AugmentationSchemaBuilder augment);
25
26 }