mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
add Overrides as part of sanity check
This commit is contained in:
parent
21220bc839
commit
5a8e21468f
10 changed files with 15 additions and 0 deletions
|
@ -533,6 +533,7 @@ public class BoardDelegate extends DelegateBase
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int s_noLockCount = 0; // supports a quick debugging hack
|
private static int s_noLockCount = 0; // supports a quick debugging hack
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
m_isFirstLaunch = null == savedInstanceState;
|
m_isFirstLaunch = null == savedInstanceState;
|
||||||
|
|
|
@ -158,6 +158,7 @@ public class DictBrowseDelegate extends DelegateBase
|
||||||
m_activity = delegator.getActivity();
|
m_activity = delegator.getActivity();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
Bundle args = getArguments();
|
Bundle args = getArguments();
|
||||||
|
|
|
@ -246,6 +246,7 @@ public class DwnldDelegate extends ListDelegateBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
m_dfts = new ArrayList<DownloadFilesTask>();
|
m_dfts = new ArrayList<DownloadFilesTask>();
|
||||||
|
|
|
@ -448,6 +448,7 @@ public class GameConfigDelegate extends DelegateBase
|
||||||
lp.isLocal = !Utils.getChecked( dialog, R.id.remote_check );
|
lp.isLocal = !Utils.getChecked( dialog, R.id.remote_check );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
getBundledData( savedInstanceState );
|
getBundledData( savedInstanceState );
|
||||||
|
|
|
@ -124,6 +124,12 @@ abstract class InviteDelegate extends ListDelegateBase
|
||||||
m_checked = new HashSet<InviterItem>();
|
m_checked = new HashSet<InviterItem>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void init( Bundle sis )
|
||||||
|
{
|
||||||
|
super.init( sis );
|
||||||
|
}
|
||||||
|
|
||||||
protected void init( String descTxt, int emptyMsgId )
|
protected void init( String descTxt, int emptyMsgId )
|
||||||
{
|
{
|
||||||
m_inviteButton = (Button)findViewById( R.id.button_invite );
|
m_inviteButton = (Button)findViewById( R.id.button_invite );
|
||||||
|
|
|
@ -135,6 +135,7 @@ public class PrefsDelegate extends DelegateBase
|
||||||
return dialog;
|
return dialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
if ( null == s_keysHash ) {
|
if ( null == s_keysHash ) {
|
||||||
|
|
|
@ -91,6 +91,7 @@ public class RelayInviteDelegate extends InviteDelegate {
|
||||||
m_activity = delegator.getActivity();
|
m_activity = delegator.getActivity();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
if ( BuildConfig.RELAYINVITE_SUPPORTED ) {
|
if ( BuildConfig.RELAYINVITE_SUPPORTED ) {
|
||||||
|
|
|
@ -74,6 +74,7 @@ public class StudyListDelegate extends ListDelegateBase
|
||||||
m_activity = delegator.getActivity();
|
m_activity = delegator.getActivity();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle sis )
|
protected void init( Bundle sis )
|
||||||
{
|
{
|
||||||
m_list = (ListView)findViewById( android.R.id.list );
|
m_list = (ListView)findViewById( android.R.id.list );
|
||||||
|
|
|
@ -94,6 +94,7 @@ public class LocDelegate extends ListDelegateBase
|
||||||
setListAdapter( m_adapter );
|
setListAdapter( m_adapter );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
m_searchButton = (ImageButton)findViewById( R.id.loc_search_button );
|
m_searchButton = (ImageButton)findViewById( R.id.loc_search_button );
|
||||||
|
|
|
@ -60,6 +60,7 @@ public class LocItemEditDelegate extends DelegateBase implements TextWatcher {
|
||||||
m_activity = delegator.getActivity();
|
m_activity = delegator.getActivity();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected void init( Bundle savedInstanceState )
|
protected void init( Bundle savedInstanceState )
|
||||||
{
|
{
|
||||||
String key = getIntent().getStringExtra( KEY );
|
String key = getIntent().getStringExtra( KEY );
|
||||||
|
|
Loading…
Reference in a new issue