blob: 8e3a6d375b6573dba2ed5e32cabfaae49f17b885 [file] [log] [blame]
/*
* Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
*
* 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 jp.co.omronsoft.openwnn.EN;
import jp.co.omronsoft.openwnn.*;
import android.view.View;
/**
* The user dictionary's word editor class for English IME.
*
* @author Copyright (C) 2009 OMRON SOFTWARE CO., LTD. All Rights Reserved.
*/
public class UserDictionaryToolsEditEN extends UserDictionaryToolsEdit {
/**
* Constructor
*/
public UserDictionaryToolsEditEN() {
super();
initialize();
}
/**
* Constructor
*
* @param focusView The view
* @param focusPairView The pair view
*/
public UserDictionaryToolsEditEN(View focusView, View focusPairView) {
super(focusView, focusPairView);
initialize();
}
/**
* Initialize the parameters
*/
public void initialize() {
mListViewName = "jp.co.omronsoft.openwnn.EN.UserDictionaryToolsListEN";
mPackageName = "jp.co.omronsoft.openwnn";
}
/** @see jp.co.omronsoft.openwnn.UserDictionaryToolsEdit#sendEventToIME */
@Override protected boolean sendEventToIME(OpenWnnEvent ev) {
try {
return OpenWnnEN.getInstance().onEvent(ev);
} catch (Exception ex) {
/* do nothing if an error occurs */
}
return false;
}
/** @see jp.co.omronsoft.openwnn.UserDictionaryToolsEdit#createUserDictionaryToolsList */
@Override protected UserDictionaryToolsList createUserDictionaryToolsList() {
return new UserDictionaryToolsListEN();
}
}