2019-12-31 18:19:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
2023-10-17 13:44:01 +02:00
|
|
|
* modified
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
|
2019-12-31 18:19:35 +01:00
|
|
|
*/
|
|
|
|
|
2024-01-31 18:32:43 +01:00
|
|
|
package helium314.keyboard.latin;
|
2019-12-31 18:19:35 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Factory for instantiating DictionaryFacilitator objects.
|
|
|
|
*/
|
|
|
|
public class DictionaryFacilitatorProvider {
|
|
|
|
public static DictionaryFacilitator getDictionaryFacilitator(boolean isNeededForSpellChecking) {
|
2023-12-15 14:55:41 +01:00
|
|
|
return new DictionaryFacilitatorImpl();
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
}
|