Examples of doTransformation()


Examples of org.sintef.umt.transformer.TransformerEngine.doTransformation()

              public void notifyFinished ()
              {}
            });
           
            tre.setTransformationImpl(implementation);
            tre.doTransformation();
          } else {
            tre.setOutputDir(gendir);
            tre.addTransformationResultListener (fileviewer);
            tre.addTransformationResultListener (new TransformationResultListener(){
              public void notifyNewResult (Object result)
View Full Code Here

Examples of org.sintef.umt.transformer.TransformerEngine.doTransformation()

              tre.setContext (nodename, nodeid);
              tre.setInputSource (new StringReader(xmlbuffer))
            }

            tre.setTransformationImpl (implementation);
            tre.doTransformation ();
           
            _workcontext.setState(WorkContext.STATE_PERFORMED_ACTION);
          }
        }
      } catch (Exception ex){       
View Full Code Here

Examples of org.sintef.umt.transformer.TransformerEngine.doTransformation()

          tre.setTransformationImpl (implementation);
          tre.setOutputDir(outputdir)
          tre.setOutputFile(outputfile);
          tre.addTransformationResultListener(transformationresultlistener);
          System.out.println ("Doing transformation - with class" + tre.getClass().getName());
          tre.doTransformation ();         
         }
       }
     }
     System.exit(0);
   }
View Full Code Here

Examples of org.sintef.umt.transgen.Profile2XSD.doTransformation()

     
      InputSource toParse = new InputSource(new StringReader(pimviewer.getHutnBuffer()));
         
      Document theModel = bobTheBuilder.parse(toParse);
   
      theSchema = transformer.doTransformation(theProfile,theModel);
      String theProfileName = "No profile selected.";
      if (theProfile != null)
        theProfileName = theProfile.getName();
      if (theProfileName == null || theProfileName.equals(""))
        theProfileName = "(no profile)";
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.