{
  "translations": {
    "en": {
      "sc1": "The append method works almost the same as insertion. We will insert the value 15.",
      "sc2": "Create a new link node.",
      "sc3": "Copy 15 to the new node.",
      "sc4": "The new node's <code>next</code> field is assigned to point to what <code>tail</code> points to. The new node's <code>prev</code> field is assigned to point to what <code>tail.prev()</code> points to.",
      "sc5": "<code>tail</code> node's <code>prev</code> field is assigned to point to the new link node.",
      "sc6": "The <code>tail.prev().prev()</code>'s <code>next</code> field is assigned to point to the new link node.",
      "sc7": "The new link node is in its correct position in the list.",
      "sc8": "Increase the list size by 1."
    }
  },
  "code": {
    "java": [{
      "url": "../../../SourceCode/Java/Lists/DList.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: DListAppend *** */",
      "endBefore": "/* *** ODSAendTag: DListAppend *** */",
      "tags": {
        "sig": 1,
        "setPrev": 2,
        "setNext": 3,
        "size": 5
      }
    }],
    "java_generic": [{
      "url": "../../../SourceCode/Java_Generic/Lists/DList.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: DListAppend *** */",
      "endBefore": "/* *** ODSAendTag: DListAppend *** */",
      "tags": {
        "sig": 1,
        "setPrev": 2,
        "setNext": 3,
        "size": 5
      }
    }]
  }
}
