Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / android / source / src / java / org / libreoffice / canvas / SelectionHandleEnd.java
blobf0b68eea2f1056ebd3dafa559d4379ed3590741c
1 package org.libreoffice.canvas;
3 import android.content.Context;
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(Context context) {
12 super(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;