/*
* NNComposerPanel.java
*
* Created on November 24, 2007, 10:50 PM
*/
package com.meapsoft.gui.composers;
import com.meapsoft.composers.Composer;
import com.meapsoft.composers.NNComposer;
/**
*
* @author Mike
*/
public class NNComposerPanel extends ComposerSettingsPanel
{
/** Creates new form NNComposerPanel */
public NNComposerPanel()
{
initComponents();
}
public int initComposer()
{
mComposer = new NNComposer(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, 267, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
.add(0, 195, Short.MAX_VALUE)
);
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
// End of variables declaration//GEN-END:variables
}