7d17b042e6108dd76c1de2a831667775360639fa
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / SchemaContextHolder.java
1 /* Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
2 *
3 * This program and the accompanying materials are made available under the
4 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
5 * and is available at http://www.eclipse.org/legal/epl-v10.html
6 */
7 package org.opendaylight.yangtools.yang.model.api;
8
9 public interface SchemaContextHolder {
10
11     SchemaContext getSchemaContext();
12
13 }