Files
libguestfs/java
Richard W.M. Jones 0da2dbef26 java: Generate overloaded non-optargs method for each optargs method.
For example the existing method:

  public void mkfs_opts (String fstype, String device, Map<..> optargs);

is now accompanied by this overloaded method which is a simple wrapper:

  public void mkfs_opts (String fstype, String device)
    throws LibGuestFSException
  {
    mkfs_opts (fstype, device, null);
  }
2012-07-13 14:02:43 +01:00
..
2012-04-25 17:32:30 +01:00
2012-06-28 13:40:33 +01:00
2012-04-25 17:32:30 +01:00
2012-01-18 22:05:02 +00:00