// we have to assign character objects to the subset. Here we get the full list
List<org.nexml.model.Character> nexCharacters = nexMatrix.getCharacters();
// now we iterate over the coordinates and assign the nexml characters to the set
for ( int i = start; i <= stop; i += inc ) {
nexSubset.addThing(nexCharacters.get(i));
}
}
}
}
}