public NoteHeadHandle castToNoteHeadHandle() { NoteHeadHandle ret = new NoteHeadHandle(); ret.setCaption(Caption); ret.setDepth(Depth); ret.setDuration(Duration); ret.IconID = IconID; ret.IDS = IDS; ret.setLength(getLength()); ret.Original = Original; return(ret); }
public Object clone() { NoteHeadHandle result = new NoteHeadHandle(); result.Index = Index; result.IconID = IconID; result.IDS = IDS; result.Original = Original; result.setCaption(getCaption()); result.setLength(getLength()); result.setDuration(getDuration()); result.setDepth(getDepth()); return(result); }