All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.alantea.viewml.processors.AddBundleProcessor Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package net.alantea.viewml.processors;

import org.xml.sax.SAXException;

import net.alantea.utils.MultiMessages;
import net.alantea.viewml.annotations.VInstruction;

/**
 * The Class ImportProcessor.
 */
@VInstruction("addBundle")
public class AddBundleProcessor implements Processor
{

   /**
    * Instantiates a new import processor.
    */
   public AddBundleProcessor()
   {
   }

   /**
    * Process.
    *
    * @param data the data
    * @throws SAXException the SAX exception
    */
   /* (non-Javadoc)
    * @see net.eads.astrium.it3s.txml.processors.Processor#process(java.lang.String)
    */
   @Override
   public void process(String data) throws SAXException
   {
      MultiMessages.addBundle(data.trim());
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy