summaryrefslogtreecommitdiffstats
path: root/java/t/GuestFS080OptArgs.java
Commit message (Collapse)AuthorAgeFilesLines
* java: Generate overloaded non-optargs method for each optargs method.Richard W.M. Jones2012-08-051-1/+1
| | | | | | | | | | | | | | | 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); } (cherry picked from commit 0da2dbef26a9efddbc1f4cd6cbe796b3b5f98d13)
* java: Fix optional arguments in calls.Richard W.M. Jones2011-07-191-0/+63
This also adds tests.