/*
* MeapaeMComposerPanel.java
*
* Created on November 24, 2007, 10:50 PM
*/
package com.meapsoft.gui.composers;
import com.meapsoft.composers.Composer;
import com.meapsoft.composers.MeapaeMComposer;
/**
*
* @author Mike
*/
public class MeapaeMComposerPanel extends ComposerSettingsPanel
{
/** Creates new form MeapaeMComposerPanel */
public MeapaeMComposerPanel()
{
initComponents();
}
public int initComposer()
{
mComposer = new MeapaeMComposer(mParentTab.featFile, mParentTab.edlFile);
return 0;
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents()
{
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(0, 203, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(0, 157, Short.MAX_VALUE)
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
// End of variables declaration//GEN-END:variables
}