Update git submodules
[LibreOffice.git] / android / source / src / java / org / libreoffice / canvas / SelectionHandleEnd.java
blobb85b80fc957907931b03a2908dc305f296a09f92
1 package org.libreoffice.canvas;
3 import org.libreoffice.LibreOfficeMainActivity;
5 import org.libreoffice.R;
7 /**
8 * Selection handle for showing and manipulating the end of a selection.
9 */
10 public class SelectionHandleEnd extends SelectionHandle {
11 public SelectionHandleEnd(LibreOfficeMainActivity context) {
12 super(context, getBitmapForDrawable(context, R.drawable.handle_alias_end));
15 /**
16 * Define the type of the handle.
18 @Override
19 public HandleType getHandleType() {
20 return HandleType.END;