summaryrefslogtreecommitdiffstats
path: root/android/source/src/java/org/libreoffice/canvas/SelectionHandleEnd.java
blob: b85b80fc957907931b03a2908dc305f296a09f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.libreoffice.canvas;

import org.libreoffice.LibreOfficeMainActivity;

import org.libreoffice.R;

/**
 * Selection handle for showing and manipulating the end of a selection.
 */
public class SelectionHandleEnd extends SelectionHandle {
    public SelectionHandleEnd(LibreOfficeMainActivity context) {
        super(context, getBitmapForDrawable(context, R.drawable.handle_alias_end));
    }

    /**
     * Define the type of the handle.
     */
    @Override
    public HandleType getHandleType() {
        return HandleType.END;
    }
}