code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/AbstractEditorActivity.java
Java
asf20
8,288
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/ProjectEditorActivity.java
Java
asf20
8,950
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/TaskEditorActivity.java
Java
asf20
52,420
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/IconPickerActivity.java
Java
asf20
4,170
package org.dodgybits.shuffle.android.editor.activity; import android.os.Bundle; import android.text.format.Time; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.TextView; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.act...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/TaskEditorSchedulingActivity.java
Java
asf20
1,441
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/editor/activity/ContextEditorActivity.java
Java
asf20
10,872
package org.dodgybits.shuffle.android.synchronisation.tracks.activity; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.activity.flurry.FlurryEnabledActivity; import org.dodgybits.shuffle.android.preference.model.Pref...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/activity/SynchronizeActivity.java
Java
asf20
2,662
/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ssl/TrustStrategy.java
Java
asf20
2,609
/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ssl/TrustSelfSignedStrategy.java
Java
asf20
1,852
/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ssl/TrustManagerDecorator.java
Java
asf20
2,444
package org.dodgybits.shuffle.android.synchronisation.tracks.ssl; import java.io.IOException; import java.net.Socket; import java.net.UnknownHostException; import java.security.KeyManagementException; import java.security.KeyStore; import java.security.KeyStoreException; import java.security.NoSuchAlgorithmException; ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ssl/TrustedSSLSocketFactory.java
Java
asf20
2,456
package org.dodgybits.shuffle.android.synchronisation.tracks; @SuppressWarnings("serial") public class ApiException extends Exception { public ApiException(String reason) { super(reason); } public ApiException(String reason, Exception e) { super(reason, e); } }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ApiException.java
Java
asf20
316
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.apache.http.HttpStatus; import org.apache.http.StatusLine; import org.dodgybits.shuffle.android.core.model.EntityBuilder; import org.dodgybits.shuffle.android.core.mode...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/Synchronizer.java
Java
asf20
11,087
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import static org.dodgybits.shuffle.android.core.util.Constants.cFlurryTracksSyncError; import java.io.IOException; import java.io.StringReader; import java.util.HashMap; import java.util.Map; import org.dodgybits.shuffle.android.core.act...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/Parser.java
Java
asf20
4,567
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import java.text.ParseException; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.model.Context; import org.dodgybits.shuffle.android.core.model.EntityBuilder; import org.dodgybit...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/ContextParser.java
Java
asf20
1,889
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; public class ParseResult<T> { private boolean mSuccess; private T mResult; public ParseResult(T result, boolean success) { mSuccess = success; mResult = result; } public ParseResult() { mSuccess = false; mResult = null;...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/ParseResult.java
Java
asf20
436
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import java.text.ParseException; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.model.EntityBuilder; import org.dodgybits.shuffle.android.core.model.Id; import org.dodgybits.s...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/TaskParser.java
Java
asf20
5,050
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import org.dodgybits.shuffle.android.core.model.Id; public interface IProjectLookup { Id findProjectIdByTracksId(Id tracksId); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/IProjectLookup.java
Java
asf20
213
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import org.dodgybits.shuffle.android.core.model.Id; public interface IContextLookup { Id findContextIdByTracksId(Id tracksId); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/IContextLookup.java
Java
asf20
213
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; public interface Applier { boolean apply(String value); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/Applier.java
Java
asf20
135
package org.dodgybits.shuffle.android.synchronisation.tracks.parsing; import java.text.ParseException; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.model.EntityBuilder; import org.dodgybits.shuffle.android.core.model.Id; import org.dodgybits.shu...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/parsing/ProjectParser.java
Java
asf20
3,070
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.io.IOException; import java.io.StringWriter; import java.util.Map; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.model.Context; import org....
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ContextSynchronizer.java
Java
asf20
4,398
package org.dodgybits.shuffle.android.synchronisation.tracks; import org.apache.http.StatusLine; public class WebResult { private String mContent; private StatusLine mStatus; public WebResult(StatusLine status, String content) { mStatus = status; mContent = content; } public String getCo...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/WebResult.java
Java
asf20
418
package org.dodgybits.shuffle.android.synchronisation.tracks.service; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.preference.model.Preferences; import org.dodgybits.shuffle.android.preference.view.Progress; import org...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/service/SynchronizationService.java
Java
asf20
5,709
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.util.Map; import org.dodgybits.shuffle.android.core.model.Id; import org.dodgybits.shuffle.android.synchronisation.tracks.model.TracksEntity; public class TracksEntities<E extends TracksEntity> { private Map<Id, E> mEntities; ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/TracksEntities.java
Java
asf20
658
package org.dodgybits.shuffle.android.synchronisation.tracks; import static org.dodgybits.shuffle.android.core.util.Constants.cFlurryTracksSyncCompletedEvent; import static org.dodgybits.shuffle.android.core.util.Constants.cFlurryTracksSyncError; import static org.dodgybits.shuffle.android.core.util.Constants.cFlurryT...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/TracksSynchronizer.java
Java
asf20
6,500
package org.dodgybits.shuffle.android.synchronisation.tracks.model; import org.dodgybits.shuffle.android.core.model.Entity; import org.dodgybits.shuffle.android.core.model.Id; public interface TracksEntity extends Entity { Id getTracksId(); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/model/TracksEntity.java
Java
asf20
251
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.io.IOException; import java.io.StringReader; import java.io.StringWriter; import java.util.LinkedList; import java.util.Map; import org.apache.http.HttpStatus; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.ac...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/TaskSynchronizer.java
Java
asf20
7,871
package org.dodgybits.shuffle.android.synchronisation.tracks; import org.dodgybits.shuffle.android.preference.view.Progress; /** * Items that can receive updates about synchronization progress * * @author Morten Nielsen */ public interface SyncProgressListener { void progressUpdate(Progress progress); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/SyncProgressListener.java
Java
asf20
316
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.io.IOException; import java.io.StringWriter; import java.util.Map; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.activity.flurry.Analytics; import org.dodgybits.shuffle.android.core.model.EntityBuilder; impor...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/ProjectSynchronizer.java
Java
asf20
4,580
package org.dodgybits.shuffle.android.synchronisation.tracks; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.net.URI; import org.apache.http.Header; import org.apache.http.HttpEntity; import org.apache.http.HttpHos...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/synchronisation/tracks/WebClient.java
Java
asf20
9,817
package org.dodgybits.shuffle.android.widget; import android.app.PendingIntent; import android.appwidget.AppWidgetManager; import android.content.*; import android.database.Cursor; import android.net.Uri; import android.view.View; import android.widget.RemoteViews; import com.google.inject.Inject; import org.dodgybits...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/widget/AbstractWidgetProvider.java
Java
asf20
10,229
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/widget/DarkWidgetProvider.java
Java
asf20
4,049
/* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/widget/LightWidgetProvider.java
Java
asf20
3,832
package org.dodgybits.shuffle.android.widget; import android.appwidget.AppWidgetManager; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.RemoteViews; import org.dodgybits.android.shuffle.R; impo...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/widget/WidgetConfigure.java
Java
asf20
5,034
package org.dodgybits.shuffle.android.widget; import android.appwidget.AppWidgetManager; import android.content.Context; import android.content.Intent; import android.os.Bundle; import com.google.inject.Injector; import roboguice.application.RoboApplication; import roboguice.inject.ContextScope; import roboguice.recei...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/widget/RoboAppWidgetProvider.java
Java
asf20
4,814
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesActivity.java
Java
asf20
4,332
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesDeleteCompletedActivity.java
Java
asf20
1,680
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesDeleteAllActivity.java
Java
asf20
1,663
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesAppearanceActivity.java
Java
asf20
7,079
package org.dodgybits.shuffle.android.preference.activity; import java.io.File; import java.io.FileInputStream; import java.io.FilenameFilter; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesRestoreBackupActivity.java
Java
asf20
18,664
package org.dodgybits.shuffle.android.preference.activity; import static org.dodgybits.shuffle.android.preference.model.Preferences.TRACKS_INTERVAL; import static org.dodgybits.shuffle.android.preference.model.Preferences.TRACKS_PASSWORD; import static org.dodgybits.shuffle.android.preference.model.Preferences.TRACKS_...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/SynchronizationSettingsActivity.java
Java
asf20
7,011
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesDeleteActivity.java
Java
asf20
1,942
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesPermanentlyDeleteActivity.java
Java
asf20
2,397
package org.dodgybits.shuffle.android.preference.activity; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.text.SimpleDateFormat; import java.util.Date; import org.dodgybits.android.shuffle.R; import org.dodgybits.shuffle.android.core.activity...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/activity/PreferencesCreateBackupActivity.java
Java
asf20
14,193
package org.dodgybits.shuffle.android.preference.model; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.util.Log; import org.dodgybits.shuffle.android.core.model.persistence.se...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/model/ListPreferenceSettings.java
Java
asf20
6,447
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/model/Preferences.java
Java
asf20
7,647
package org.dodgybits.shuffle.android.preference.view; public class Progress { private int mProgressPercent; private String mDetails; private boolean mIsError; private Runnable mErrorUIAction; public static Progress createProgress(int progressPercent, String details) { return new Progress(progressPercent, det...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/preference/view/Progress.java
Java
asf20
1,181
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/view/activity/TaskViewActivity.java
Java
asf20
9,507
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/view/activity/AbstractViewActivity.java
Java
asf20
3,150
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.TaskProvider; import android.database.sqlite.SQLiteDatabase; public class V10Migration implements Migration { @Override public void migrate(SQLiteDataba...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V10Migration.java
Java
asf20
1,016
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.AbstractCollectionProvider; import org.dodgybits.shuffle.android.persistence.provider.ProjectProvider; import org.dodgybits.shuffle.android.persistence.provider.T...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V1Migration.java
Java
asf20
1,528
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.ReminderProvider; import org.dodgybits.shuffle.android.persistence.provider.TaskProvider; import android.database.sqlite.SQLiteDatabase; public class V11Migr...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V11Migration.java
Java
asf20
2,424
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import android.database.sqlite.SQLiteDatabase; public interface Migration { public void migrate(SQLiteDatabase db); }
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/Migration.java
Java
asf20
223
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.ContextProvider; import org.dodgybits.shuffle.android.persistence.provider.ProjectProvider; import org.dodgybits.shuffle.android.persistence.provider.TaskProvider...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V15Migration.java
Java
asf20
915
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.ContextProvider; import org.dodgybits.shuffle.android.persistence.provider.ProjectProvider; import org.dodgybits.shuffle.android.persistence.provider.TaskProvider...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V14Migration.java
Java
asf20
918
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.ProjectProvider; import android.database.sqlite.SQLiteDatabase; public class V13Migration implements Migration { @Override public void migrate(SQLiteD...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V13Migration.java
Java
asf20
510
package org.dodgybits.shuffle.android.persistence.migrations; import static org.dodgybits.shuffle.android.persistence.provider.ContextProvider.CONTEXT_TABLE_NAME; import android.content.Context; import android.database.sqlite.SQLiteDatabase; public class V9Migration implements Migration { @Override publ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V9Migration.java
Java
asf20
716
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.ContentResolver; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.net.Uri; ...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V16Migration.java
Java
asf20
2,542
package org.dodgybits.shuffle.android.persistence.migrations; import android.content.Context; import org.dodgybits.shuffle.android.persistence.provider.ContextProvider; import org.dodgybits.shuffle.android.persistence.provider.ProjectProvider; import org.dodgybits.shuffle.android.persistence.provider.TaskProvid...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/migrations/V12Migration.java
Java
asf20
1,087
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/AutoCompleteCursorAdapter.java
Java
asf20
2,366
package org.dodgybits.shuffle.android.persistence.provider; import android.net.Uri; public class ReminderProvider extends AbstractCollectionProvider { private static final String AUTHORITY = Shuffle.PACKAGE+".reminderprovider"; public static final String cUpdateIntent = "org.dodgybits.shuffle.android.REM...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/ReminderProvider.java
Java
asf20
2,087
package org.dodgybits.shuffle.android.persistence.provider; import android.content.ContentValues; import android.net.Uri; import android.provider.BaseColumns; public class TaskProvider extends AbstractCollectionProvider { public static final String TASK_TABLE_NAME = "task"; public static final String U...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/TaskProvider.java
Java
asf20
4,062
package org.dodgybits.shuffle.android.persistence.provider; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import android.app.SearchManager; import android.content.ContentProvider; import android.content.ContentUris; import android.content.ContentValues; import android.content.Inte...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/AbstractCollectionProvider.java
Java
asf20
16,337
package org.dodgybits.shuffle.android.persistence.provider; import android.net.Uri; import android.provider.BaseColumns; public class ContextProvider extends AbstractCollectionProvider { public static final String CONTEXT_TABLE_NAME = "context"; public static final String UPDATE_INTENT = "org.dodgybits....
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/ContextProvider.java
Java
asf20
3,084
package org.dodgybits.shuffle.android.persistence.provider; import android.net.Uri; import android.provider.BaseColumns; public class ProjectProvider extends AbstractCollectionProvider { public static final String PROJECT_TABLE_NAME = "project"; public static final String UPDATE_INTENT = "org.dodg...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/ProjectProvider.java
Java
asf20
3,739
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/Shuffle.java
Java
asf20
804
/** * */ package org.dodgybits.shuffle.android.persistence.provider; import java.util.Set; import java.util.SortedMap; import java.util.TreeMap; import org.dodgybits.shuffle.android.persistence.migrations.*; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/persistence/provider/DatabaseHelper.java
Java
asf20
2,007
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/AbstractDrilldownListActivity.java
Java
asf20
2,935
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/State.java
Java
asf20
923
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/ContextsActivity.java
Java
asf20
3,690
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/TopTasksActivity.java
Java
asf20
2,007
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/TicklerActivity.java
Java
asf20
2,180
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/AbstractTaskListActivity.java
Java
asf20
5,532
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/InboxActivity.java
Java
asf20
3,409
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/ContextTasksActivity.java
Java
asf20
3,575
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/ProjectTasksActivity.java
Java
asf20
5,952
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/task/TabbedDueActionsActivity.java
Java
asf20
4,216
package org.dodgybits.shuffle.android.list.activity; import android.content.Intent; import android.os.Bundle; import android.preference.ListPreference; import android.preference.Preference; import android.preference.PreferenceActivity; import android.preference.PreferenceScreen; import org.dodgybits.android.shuffle.R;...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/ListPreferenceActivity.java
Java
asf20
4,506
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/ProjectsActivity.java
Java
asf20
3,538
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/AbstractListActivity.java
Java
asf20
11,704
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/expandable/AbstractExpandableActivity.java
Java
asf20
20,457
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/expandable/ExpandableContextsActivity.java
Java
asf20
6,396
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/activity/expandable/ExpandableProjectsActivity.java
Java
asf20
9,110
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/Projects.java
Java
asf20
513
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/Tickler.java
Java
asf20
512
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/ExpandableProjects.java
Java
asf20
523
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/ContextTasks.java
Java
asf20
517
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/ExpandableContexts.java
Java
asf20
523
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/TopTasks.java
Java
asf20
513
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/ProjectTasks.java
Java
asf20
517
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/DueTasks.java
Java
asf20
513
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.RetentionPolicy.RUNTIME; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.an...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/Contexts.java
Java
asf20
512
package org.dodgybits.shuffle.android.list.annotation; import com.google.inject.BindingAnnotation; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/annotation/Inbox.java
Java
asf20
510
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/LabelView.java
Java
asf20
2,263
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/SwipeListItemWrapper.java
Java
asf20
3,874
package org.dodgybits.shuffle.android.list.view; import android.content.Context; import android.text.ParcelableSpan; import android.text.Spannable; import android.text.SpannableString; import android.text.SpannableStringBuilder; import android.text.style.ForegroundColorSpan; import android.util.AttributeSet; import an...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/StatusView.java
Java
asf20
5,847
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/ProjectView.java
Java
asf20
3,236
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/ExpandableTaskView.java
Java
asf20
1,509
/* * Copyright (C) 2009 Android Shuffle Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
115371172-shuffle
client/src/org/dodgybits/shuffle/android/list/view/ContextView.java
Java
asf20
4,007