001 package tecgraf.openbus.DRMAA;
002
003 /**
004 * Generated from IDL struct "Version".
005 *
006 * @author JacORB IDL compiler V 2.3-beta-2, 14-Oct-2006
007 * @version generated at Jun 10, 2010 6:49:11 PM
008 */
009
010 public final class Version
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public Version(){}
014 public int major;
015 public int minor;
016 public Version(int major, int minor)
017 {
018 this.major = major;
019 this.minor = minor;
020 }
021 }