mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
Changed callback arguments to varargs and renamed a method.
This commit is contained in:
@@ -4,13 +4,13 @@ import java.util.Map;
|
||||
|
||||
public interface TransportCallback {
|
||||
|
||||
void setLocalTransports(Map<String, String> transports);
|
||||
void setLocalProperties(Map<String, String> properties);
|
||||
|
||||
void setConfig(Map<String, String> config);
|
||||
|
||||
void showMessage(String message);
|
||||
void showMessage(String... message);
|
||||
|
||||
boolean showConfirmationMessage(String message);
|
||||
boolean showConfirmationMessage(String... message);
|
||||
|
||||
int showChoice(String message, String[] choices);
|
||||
int showChoice(String[] choices, String... message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user