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

build.PCMLTask Maven / Gradle / Ivy

There is a newer version: 20.0.7
Show newest version
///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                              
//                                                                             
// Filename: PCMLTask.java
//                                                                             
// The source code contained herein is licensed under the IBM Public License   
// Version 1.0, which has been approved by the Open Source Initiative.         
// Copyright (C) 1997-2002 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////
import org.apache.tools.ant.*;
import org.apache.tools.ant.taskdefs.*;
import org.apache.tools.ant.types.*;
import java.io.*;

/**
 * ANT task used to generate serialized PCML files.
**/
public class PCMLTask extends MatchingTask
{
  static final String copyright = "Copyright (C) 1997-2019 International Business Machines Corporation and others.";

  private File srcDir_;
  private File destDir_;
  private Path classpath_;

  public void setClasspath(Path s)
  {
    classpath_ = s;
  }

  public void setSrcdir(File srcDir)
  {
    srcDir_ = srcDir;
  }

  public void setDestdir(File destDir)
  {
    destDir_ = destDir;
  }

  public void execute() throws BuildException
  {
    DirectoryScanner scanner = getDirectoryScanner(srcDir_);
    String[] f = scanner.getIncludedFiles();
    
    Java java = (Java)project.createTask("java");
    java.clearArgs();
    java.setClassname("com.ibm.as400.data.ProgramCallDocument");
    java.setClasspath(classpath_);
    java.setFork(true); // Otherwise JDK 1.4 throws NoClassDefFoundError on sun/reflect/SerializationConstructorAccessorImpl
    Commandline.Argument arg1 = java.createArg();
    arg1.setValue("-serialize");
    Commandline.Argument arg2 = java.createArg();
    for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy