ElementTree addListItem(ElementTree list, Int index, String initialcontents=createString(0))
Arguments
list: The list to add toindex: The index to insert at (starting at zero)initialcontents: Optionally, the initial contents of the list item
Usage
Add a list item to a list at the specified index. If the list given is not actually a list, an InvalidNesting Exception is thrown.
if (extradetails) {
addListItem(instructions,5,"Check that all leads are attached.");
addListItem(instructions,12,"Check that the batteries are charged.");
}