Embedded: how can I set an attribute (Frame and Object tags)

Hello,

I have the following code:

private Embedded constructFramee(String url) throws MalformedURLException{

URL u = new URL(url);
Embedded browser = new Embedded(“”, new ExternalResource(u));
browser.setType(Embedded.TYPE_BROWSER);
browser.setWidth(“100%”);
browser.setHeight(“100%”);
return browser;

}

This generates and renders an IFrame as expected.
However I would like to set the IFrame’s id attribute. How can I do this?
The same goes for the case of the Object (Embedded.TYPE_OBJECT).

TIA

browser.setDebugId(“your-id”)?