Bug 2366 - Effective statements impl for new yang parser.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / AbstractEffectiveSchemaContext.java
index 85bf899b65411bface1604bc8129587b9cabbfc5..e84af21131271e4eab3ed1a32204323320f29748 100644 (file)
@@ -1,3 +1,10 @@
+/**
+ * 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.stmt.rfc6020.effective;
 
 import com.google.common.base.Optional;
@@ -31,7 +38,6 @@ import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.UsesNode;
 
-
 public abstract class AbstractEffectiveSchemaContext implements SchemaContext {
 
     protected static final Supplier<TreeSet<Module>> MODULE_SET_SUPPLIER = new Supplier<TreeSet<Module>>() {
@@ -117,11 +123,12 @@ public abstract class AbstractEffectiveSchemaContext implements SchemaContext {
     @Override
     public Set<Module> findModuleByNamespace(final URI namespace) {
         final Set<Module> ret = getNamespaceToModules().get(namespace);
-        return ret == null ? Collections.<Module>emptySet() : ret;
+        return ret == null ? Collections.<Module> emptySet() : ret;
     }
 
     @Override
-    public Module findModuleByNamespaceAndRevision(final URI namespace, final Date revision) {
+    public Module findModuleByNamespaceAndRevision(final URI namespace,
+            final Date revision) {
         if (namespace == null) {
             return null;
         }
@@ -251,14 +258,15 @@ public abstract class AbstractEffectiveSchemaContext implements SchemaContext {
         return Collections.emptySet();
     }
 
-    //FIXME: should work for submodules too
+    // FIXME: should work for submodules too
     @Override
     public Set<ModuleIdentifier> getAllModuleIdentifiers() {
         return getIdentifiersToSources().keySet();
     }
 
     @Override
-    public Optional<String> getModuleSource(final ModuleIdentifier moduleIdentifier) {
+    public Optional<String> getModuleSource(
+            final ModuleIdentifier moduleIdentifier) {
         String maybeSource = getIdentifiersToSources().get(moduleIdentifier);
         return Optional.fromNullable(maybeSource);
     }