/**
* @param imageString
*/
private void readString(final String imageString) {
// now read each picture and put in the vector;
ObjectLyrics3Image image;
String token;
int offset = 0;
int delim = imageString.indexOf(TagConstant.SEPERATOR_LINE);
this.images = new ArrayList<ObjectLyrics3Image>();
while (delim >= 0) {
token = imageString.substring(offset, delim);
image = new ObjectLyrics3Image("Image");
image.setFilename(token);
this.images.add(image);
offset = delim + TagConstant.SEPERATOR_LINE.length();
delim = imageString.indexOf(TagConstant.SEPERATOR_LINE, offset);
}
if (offset < imageString.length()) {
token = imageString.substring(offset);
image = new ObjectLyrics3Image("Image");
image.setFilename(token);
this.images.add(image);
}
}