If you think the Android project translationKeyboard listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2010 The Android Open Source Project
*/*www.java2s.com*/
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/package org.distantshoresmedia.translationkeyboard;
import org.distantshoresmedia.translationkeyboard.Dictionary.DataType;
import android.content.Context;
import android.content.SharedPreferences;
import java.util.List;
publicclass LatinImeLogger implements SharedPreferences.OnSharedPreferenceChangeListener {
publicvoid onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
}
publicstaticvoid init(Context context) {
}
publicstaticvoid commit() {
}
publicstaticvoid onDestroy() {
}
publicstaticvoid logOnManualSuggestion(
String before, String after, int position, List<CharSequence> suggestions) {
}
publicstaticvoid logOnAutoSuggestion(String before, String after) {
}
publicstaticvoid logOnAutoSuggestionCanceled() {
}
publicstaticvoid logOnDelete() {
}
publicstaticvoid logOnInputChar() {
}
publicstaticvoid logOnException(String metaData, Throwable e) {
}
publicstaticvoid logOnWarning(String warning) {
}
publicstaticvoid onStartSuggestion(CharSequence previousWords) {
}
publicstaticvoid onAddSuggestedWord(String word, int typeId, DataType dataType) {
}
publicstaticvoid onSetKeyboard(Keyboard kb) {
}
}