mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 04:55:04 -05:00
12d1097a24
approximating AOSP coding standards.
10 lines
384 B
Java
10 lines
384 B
Java
package com.fsck.k9.remotecontrol;
|
|
/**
|
|
*
|
|
* @author Daniel I. Applebaum
|
|
* The interface to implement in order to accept the arrays containing the UUIDs and descriptions of
|
|
* the accounts configured in K-9 Mail. Should be passed to fetchAccounts(Context, K9AccountReceptor)
|
|
*/
|
|
public interface K9AccountReceptor {
|
|
public void accounts(String[] uuids, String[] descriptions);
|
|
} |