A question regarding Java libraries which Ive never been able to figure out.
If I have this code
public String getManufacturer()
{
return os.getManufacturer();
}
In B4X I see the method as "
Manufacturer as String (read only)"
However if I have this code;
public String getManufacturer(String param)
{
return os.getManufacturer();
}
In B4X I see the method as "
getManufacturer(String param) as String"
Is there any way to get the second one to show up as a Manufacturer (i.e remove the get when using parameters)?