root/branches/iteration3/xinf/ony/Group.hx

Revision 726, 337 bytes (checked in by dan, 3 years ago)

Document.getTypedElementById, group.get(Typed)ChildByName?

Line 
1
2 package xinf.ony;
3
4 interface Group implements Element {
5
6     function attach( o:Element, ?after:Element ) :Void;
7     function detach( o:Element ) :Void;
8    
9     var children(get_children,null) :Iterator<Element>;
10    
11         function getChildByName( name:String ) :Element;
12         function getTypedChildByName<T>( name:String, cl:Class<T> ) :T;
13 }
Note: See TracBrowser for help on using the browser.