Very often parameters have names that are in no namespace, so you can construct the QName using the constructor new QName("p"). If the parameter value is a string, you can construct the value using new XdmAtomicValue("value"). So your example reduces to
setParameter(new QName(name), new XdmAtomicValue(value))
In designing an API like this, one has to judge carefully how to balance the simplicity that comes from providing "shortcut" methods for common simple cases, versus the complexity that comes from having zillions of methods. So I provided new QName(string), but I didn't provide setParameter(string, string).