[java-atk-wrapper] Wrapper: Create java AtkTextGranularity interface



commit 436034aaec7b746b46dcfc38e9e254a42698c526
Author: Magdalen Berns <m berns thismagpie com>
Date:   Thu Jul 16 09:38:35 2015 +0100

    Wrapper: Create java AtkTextGranularity interface
    
    Bug: https://bugzilla.gnome.org/show_bug.cgi?id=752319

 .../GNOME/Accessibility/AtkTextGranularity.java    |   28 ++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)
---
diff --git a/wrapper/org/GNOME/Accessibility/AtkTextGranularity.java 
b/wrapper/org/GNOME/Accessibility/AtkTextGranularity.java
new file mode 100644
index 0000000..ecc5aa1
--- /dev/null
+++ b/wrapper/org/GNOME/Accessibility/AtkTextGranularity.java
@@ -0,0 +1,28 @@
+/*
+ * Java ATK Wrapper for GNOME
+ * Copyright (C) 2015 Magdalen Berns <m berns thismagpie com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+ 
+package org.GNOME.Accessibility;
+
+public interface AtkTextGranularity {
+  public int CHAR = 0;
+  public int  WORD = 1;
+  public int SENTENCE = 2;
+  public int LINE = 3; /* The LINE constant field value is in AccessibleExtendedText */
+  public int PARAGRAPH = 4;  /*  FThere is no constant field value, PARAGRAPH in AccessibleText */
+}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]