In Java-GI 0.10.0, all flag parameters were changed from int to Set<FlagType>. All methods with these parameters were overloaded to accept a single FlagType parameter too. It would be even better to turn trailing flag parameters into variadic (FlagType...) arguments. Other flag parameters and return types should still be Set<FlagType>, probably with the overloads still available.
In Java-GI 0.10.0, all flag parameters were changed from
int
toSet<FlagType>
. All methods with these parameters were overloaded to accept a singleFlagType
parameter too. It would be even better to turn trailing flag parameters into variadic (FlagType...
) arguments. Other flag parameters and return types should still beSet<FlagType>
, probably with the overloads still available.