Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TransformationMethod.java « text « holoeverywhere « org « src « library « HoloEverywhere « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16abdad7710cdbcf3e859a125d6c58dd80427d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

package org.holoeverywhere.text;

import android.graphics.Rect;
import android.view.View;

public interface TransformationMethod extends android.text.method.TransformationMethod {
    @Override
    public CharSequence getTransformation(CharSequence source, View view);

    @Override
    public void onFocusChanged(View view, CharSequence sourceText,
            boolean focused, int direction,
            Rect previouslyFocusedRect);

    public void setLengthChangesAllowed(boolean allowLengthChanges);
}