Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / AugmentationSchema.java
index de0caedd78c3dbd1a2d429eb4c56026a45605db1..d3abae3465c4de36a5e21e20d3b9c435fa4ded21 100644 (file)
@@ -1,14 +1,14 @@
 /*
  * Copyright (c) 2013 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.model.api;
 
-import java.util.List;
-
 import com.google.common.base.Optional;
+import java.util.List;
 
 /**
  * AugmentationSchema represents augment definition. The "augment" statement
@@ -19,7 +19,6 @@ import com.google.common.base.Optional;
 public interface AugmentationSchema extends DataNodeContainer {
 
     /**
-     *
      * Returns when statement
      *
      * If when condition is present node defined by the parent data definition
@@ -66,7 +65,7 @@ public interface AugmentationSchema extends DataNodeContainer {
      * Returns Augmentation Definition from which this augmentation is derived
      * if augmentation was added transitively via augmented uses.
      *
-     * @return ugmentation Definition from which this augmentation is derived
+     * @return Augmentation Definition from which this augmentation is derived
      *         if augmentation was added transitively via augmented uses.
      */
     Optional<AugmentationSchema> getOriginalDefinition();