initComponents();
}
public int initComposer()
{
mComposer = new HMMComposer(mParentTab.featFile, mParentTab.edlFile);
//cast this down and set settings
HMMComposer hmm = (HMMComposer)mComposer;
hmm.setCodebookSize(mStatesSlider.getValue());
hmm.setBeatsPerCodeword(mBeatsSlider.getValue());
hmm.setSequenceLength(mLengthSlider.getValue());
return 0;
}