Package nexj.core.meta.workflow

Examples of nexj.core.meta.workflow.Catch


            return "Catch";
         }

         public Branch createBranch()
         {
            return new Catch();
         }

         public void loadActivity(Element element, Activity activity)
         {
            String sException = XMLUtil.getStringAttr(element, "exception");
View Full Code Here


            return "Catch";
         }

         public void exportActivity(Activity activity) throws IOException
         {
            Catch ctch = (Catch)activity;

            if (ctch.getException() != null)
            {
               m_writer.writeAttribute("exception", ctch.getException().getName());
            }

            if (ctch.getLayout() != null)
            {
               m_writer.writeAttribute("layout", ctch.getLayout());
            }

            exporter.exportActivity(activity);
         }
      });
View Full Code Here

TOP

Related Classes of nexj.core.meta.workflow.Catch

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.