Merge "Make NodeModification return a Collection"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / DomCodec.java
index c681b2ccd6cc97d0d72eaec55e56f21a5e095bc6..6f6fdf04840013ce364f1eb3a21830d2138e748e 100644 (file)
@@ -1,16 +1,19 @@
+/*
+ * 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.impl.codec;
 
 import org.opendaylight.yangtools.yang.binding.BindingCodec;
 import org.opendaylight.yangtools.yang.data.api.Node;
 
 public interface DomCodec<I> extends BindingCodec<Node<?>, ValueWithQName<I>>{
-
-
     @Override
-    public Node<?> serialize(ValueWithQName<I> input);
-
+    Node<?> serialize(ValueWithQName<I> input);
 
     @Override
-    public ValueWithQName<I> deserialize(Node<?> input);
-
+    ValueWithQName<I> deserialize(Node<?> input);
 }