* Returns the BoxObject for this element.
* @return the BoxObject for this element
*/
public BoxObject getBoxObject() {
if (boxObject_ == null) {
boxObject_ = new BoxObject(this);
boxObject_.setParentScope(getWindow());
boxObject_.setPrototype(getPrototype(boxObject_.getClass()));
}
return boxObject_;
}