mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
add methods that don't require handler but use any set
This commit is contained in:
parent
1e94e217b8
commit
ed0c0fe3a5
1 changed files with 10 additions and 0 deletions
|
@ -248,11 +248,21 @@ public class ConnStatusHandler {
|
|||
showSuccess( handler, true );
|
||||
}
|
||||
|
||||
public static void showSuccessIn()
|
||||
{
|
||||
showSuccessIn( s_handler );
|
||||
}
|
||||
|
||||
public static void showSuccessOut( Handler handler )
|
||||
{
|
||||
showSuccess( handler, false );
|
||||
}
|
||||
|
||||
public static void showSuccessOut()
|
||||
{
|
||||
showSuccessOut( s_handler );
|
||||
}
|
||||
|
||||
public static void draw( Context context, Canvas canvas, Resources res,
|
||||
int offsetX, int offsetY, CommsConnType connType )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue