summaryrefslogtreecommitdiff
path: root/android/source/src/java/org/libreoffice/canvas/SelectionHandleEnd.java
blob: 7d4d63520035e0a0f78019c5a3059af58549f0bd (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 android.content.Context;

import org.libreoffice.R;

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

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