X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-data-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fdata%2Fapi%2Fschema%2FOrderedMapNode.java;h=7c3363d7c8bfb22707479e4ed70d43f2860f2370;hb=1eb87c819cc6881ca7be74917a5d0bb7a9cad41f;hp=963d7dab0b1068e29b6ad9518381a51f8ac6b07b;hpb=a243f452faae458db1b5b19d77c61981c5e38c9c;p=yangtools.git diff --git a/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/OrderedMapNode.java b/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/OrderedMapNode.java index 963d7dab0b..7c3363d7c8 100644 --- a/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/OrderedMapNode.java +++ b/yang/yang-data-api/src/main/java/org/opendaylight/yangtools/yang/data/api/schema/OrderedMapNode.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * 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, @@ -7,6 +7,19 @@ */ package org.opendaylight.yangtools.yang.data.api.schema; +/** + * + * Map node which preserves user-supplied ordering. + * + *

+ * This node represents a data instance of list with + * ordered-by user; substatement and key definition. + * + *

+ * Except preserving user-ordering all other semantics and behaviour is same as + * in {@link MapNode}. + * + */ public interface OrderedMapNode extends MapNode, OrderedNodeContainer { }