* atk-bridge/bridge.c:
[platform/core/uifw/at-spi2-atk.git] / idl / Accessibility_Hyperlink.idl
index 50db8ab..95697cb 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
-#include <Accessible.idl>
+#include <Accessibility_Accessible.idl>
 
 module Accessibility {
 
-  interface Hyperlink {
-        Accessible getAnchor (in long i);
-        Accessible getObject (in long i);
-        long getStartIndex ();
-        long getEndIndex ();
-        boolean isValid ();
+  interface Hyperlink : Bonobo::Unknown {
+    readonly attribute short nAnchors;
+    readonly attribute long startIndex;
+    readonly attribute long endIndex;
+    Accessible getObject (in long i);
+    string getURI (in long i);
+    boolean isValid ();
+    /**
+     * unImplemented:
+     *
+     * placeholders for future expansion.
+     */
+    void unImplemented ();
+    void unImplemented2 ();
   };
 };