Merge "Fix for Bug 511 (model + integration-test)"
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / AttributesContainer.java
index fb1b1380dbbab47cdacf4ac763064afd10d77f5a..9146315c47925353413ab4e7e7bb7fdf1b99a567 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2014 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.data.api;
 
 import java.util.Map;
@@ -6,9 +13,8 @@ import org.opendaylight.yangtools.yang.common.QName;
 
 public interface AttributesContainer {
 
-    
-    Map<QName,String> getAttributes();
-    
+    Map<QName, String> getAttributes();
+
     Object getAttributeValue(QName value);
-    
+
 }