diff options
author | 2014-03-18 11:09:41 +0900 | |
---|---|---|
committer | 2014-03-20 16:59:29 +0900 | |
commit | f2bb15b0ab212e1ef45be2d2ea6610cfa9c9f15c (patch) | |
tree | ce85ba137ea3f8b9b681d5e000241eddad78967d /tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java | |
parent | 7ede642df417c0f732573f639970b138f0bee18c (diff) | |
download | latinime-f2bb15b0ab212e1ef45be2d2ea6610cfa9c9f15c.tar.gz latinime-f2bb15b0ab212e1ef45be2d2ea6610cfa9c9f15c.tar.xz latinime-f2bb15b0ab212e1ef45be2d2ea6610cfa9c9f15c.zip |
[CB09] Pass events through the combiner chain
Bug: 13406701
Change-Id: I4696f145478afdd132314b7d3c148c3a9ca11c9c
Diffstat (limited to 'tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java')
-rw-r--r-- | tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java b/tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java new file mode 100644 index 000000000..66ad60c74 --- /dev/null +++ b/tools/dicttool/compat/com/android/inputmethod/event/CombinerChain.java @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * 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 com.android.inputmethod.event; + +import com.android.inputmethod.latin.utils.CollectionUtils; + +import java.util.ArrayList; + +public class CombinerChain { + public CombinerChain(final Combiner... combinerList) {} + public void processEvent(final ArrayList<Event> previousEvents, final Event newEvent) {} +} |