Modifications/corrections to IDL to streamline and bring in line with ATK
[platform/core/uifw/at-spi2-atk.git] / idl / Selection.idl
index e1da97a..42a2dfb 100644 (file)
 module Accessibility {
 
   interface Selection : Bonobo::Unknown {
-        long getNSelectedChildren ();
-        Accessible getSelectedChild (in long selectedChildIndex);
-        boolean selectChild (in long childIndex);
-        boolean deselectSelectedChild (in long selectedChildIndex);
-        boolean isChildSelected (in long childIndex);
-        void selectAll ();
-        void clearSelection ();
+    readonly attribute long nSelectedChildren;
+    Accessible getSelectedChild (in long selectedChildIndex);
+    boolean selectChild (in long childIndex);
+    boolean deselectSelectedChild (in long selectedChildIndex);
+    boolean isChildSelected (in long childIndex);
+    void selectAll ();
+    void clearSelection ();
   };
 };