Package org.ggf.drmaa

Examples of org.ggf.drmaa.Version


         System.out.println("Using DRM systems: \"" +
               session.getDrmSystem() + "\"");
         System.out.println("Using DRMAA implementations: \"" +
               session.getDrmaaImplementation() + "\"");
        
         Version version = session.getVersion();
        
         System.out.println("Using DRMAA version " + version.toString());
        
         session.exit();
      } catch (DrmaaException e) {
         System.out.println("Error: " + e.getMessage());
      }
View Full Code Here


    /**
     * {@inheritDoc}
     * @return {@inheritDoc}
     */
    public Version getVersion() {
        return new Version(1, 0);
    }
View Full Code Here

TOP

Related Classes of org.ggf.drmaa.Version

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.