UR::Object::View::Default::Xml(3pm) | User Contributed Perl Documentation | UR::Object::View::Default::Xml(3pm) |
UR::Object::View::Default::Xml - represent object state in XML format
$o = Acme::Product->get(1234); $v = $o->create_view( toolkit => 'xml', aspects => [ 'id', 'name', 'qty_on_hand', 'outstanding_orders' => [ 'id', 'status', 'customer' => [ 'id', 'name', ] ], ], ); $xml1 = $v->content; $o->qty_on_hand(200); $xml2 = $v->content;
This class implements basic XML views of objects. It has standard behavior for all text views.
UR::Object::View::Default::Text, UR::Object::View, UR::Object::View::Toolkit::XML, UR::Object::View::Toolkit::Text, UR::Object
2022-01-17 | perl v5.32.1 |