Package com.qspin.qtaste.tools.converter.action

Examples of com.qspin.qtaste.tools.converter.action.ConversionTask


  private class LauchConversionAction implements ActionListener
  {
    public void actionPerformed(ActionEvent pEvt)
    {
      try {
        ConversionTask task = new ConversionTask();
        List<Object> selectedComponents = mConfigurationPane.getSelectedComponent();
        for (int i=0; i< selectedComponents.size(); ++i)
        {
          selectedComponents.set(i, ComponentNameMapping.getInstance().getComponentNameFor(selectedComponents.get(i).toString()));
        }
        task.setAcceptedComponentName(selectedComponents);
        task.setAcceptedEventType(mConfigurationPane.getSelectedEventType());
        task.setOutputDirectory(mConfigurationPane.getOutputDirectory());
        new Thread(task).start();
      }
      catch (IOException pExc)
      {
        LOGGER.error(pExc);
View Full Code Here

TOP

Related Classes of com.qspin.qtaste.tools.converter.action.ConversionTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.