625a0d3f77223e3f7c3b8cdb3510474118bd3f2a
[yangtools.git] / plugin / yang-maven-plugin-spi / src / main / java / org / opendaylight / yangtools / yang2sources / spi / BuildContextAware.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.yang2sources.spi;
9
10 import org.opendaylight.yangtools.plugin.generator.api.FileGenerator;
11 import org.sonatype.plexus.build.incremental.BuildContext;
12
13 /**
14  * Interface implemented by CodeGenerator implementations which are integrated
15  * with BuildContext. These will have the build context injected before any
16  * attempt is made to generate files and should interact with the reactor solely
17  * through it.
18  *
19  * @deprecated Use {@link FileGenerator} instead.
20  */
21 @Deprecated
22 public interface BuildContextAware {
23     /**
24      * Set the build context to be used during the lifetime of this reactor.
25      *
26      * @param buildContext current build context reference.
27      */
28     void setBuildContext(BuildContext buildContext);
29 }