X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fspi%2FTypeNamespace.java;fp=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fspi%2FTypeNamespace.java;h=0000000000000000000000000000000000000000;hb=c92cfb59f67ee6307423132f7b059cea81be7a78;hp=f4606e168c8ca7b2f74f24c370443a33584025d0;hpb=48c598a9628de1c369391f681eae4364615ab72e;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/TypeNamespace.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/TypeNamespace.java deleted file mode 100644 index f4606e168c..0000000000 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/TypeNamespace.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.yangtools.yang.parser.spi; - -import org.opendaylight.yangtools.yang.common.QName; -import org.opendaylight.yangtools.yang.model.api.stmt.TypedefEffectiveStatement; -import org.opendaylight.yangtools.yang.model.api.stmt.TypedefStatement; -import org.opendaylight.yangtools.yang.parser.spi.meta.StatementNamespace.TreeScoped; - -/** - * Derived types namespace - * - * All derived type names defined within a parent node or at the top level of - * the module or its submodules share the same type identifier namespace. This - * namespace is scoped to all descendant nodes of the parent node or module. - * This means that any descendant node may use that typedef, and it MUST NOT - * define a typedef with the same name. - * - * This namespace includes all type definitions implied by the language in which - * the current statement resides (e.g. RFC6020 for YANG). - */ -public interface TypeNamespace extends TreeScoped { - -}