diff --git a/res/layout/edit_tag_item.xml b/res/layout/edit_tag_item.xml index 4f57635e9..086ef2ee6 100644 --- a/res/layout/edit_tag_item.xml +++ b/res/layout/edit_tag_item.xml @@ -13,7 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. --> - - - + - + + - - - - - - 5 minutes - 10 minutes - 15 minutes - 20 minutes - 25 minutes - 30 minutes - 45 minutes - 1 hour - 2 hours - 3 hours - 12 hours - 24 hours - 2 days - 1 week - - - - "5" - "10" - "15" - "20" - "25" - "30" - "45" - "60" - "120" - "180" - "720" - "1440" - "2880" - "10080" - - - - None - 5 minutes - 10 minutes - 15 minutes - 20 minutes - 25 minutes - 30 minutes - 45 minutes - 1 hour - 2 hours - 3 hours - 12 hours - 24 hours - 2 days - 1 week - - - - "0" - "5" - "10" - "15" - "20" - "25" - "30" - "45" - "60" - "120" - "180" - "720" - "1440" - "2880" - "10080" - - - - Alert - Status bar notification - Off - - - - "0" - "1" - "2" - - - - Busy - Available - - - - Default - Private - Public - - - - - Sunday - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - - - - first - second - third - fourth - last - - - - - (No response) - Yes - Maybe - No - - - Yes - Maybe - No - - - - - Only this event - This & future events - All events - - - - - - This & future events - All events - - diff --git a/res/values/colors.xml b/res/values/colors.xml index 1de6a63bb..f9c2b6817 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -1,21 +1,23 @@ #ffff4444 diff --git a/res/values/strings.xml b/res/values/strings.xml index 560c30fb5..bfd47ea19 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -1,4 +1,24 @@ + Astrid diff --git a/res/values/styles.xml b/res/values/styles.xml index 64dfb61e5..bfd111ce5 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -1,21 +1,23 @@ diff --git a/src/com/timsu/astrid/activities/TaskList.java b/src/com/timsu/astrid/activities/TaskList.java index 4ddb573b3..76c9c1856 100644 --- a/src/com/timsu/astrid/activities/TaskList.java +++ b/src/com/timsu/astrid/activities/TaskList.java @@ -1,5 +1,5 @@ /* - * ASTRID: Android's Simple Task Recording Dame + * ASTRID: Android's Simple Task Recording Dashboard * * Copyright (c) 2009 Tim Su * diff --git a/src/com/timsu/astrid/activities/TaskModificationActivity.java b/src/com/timsu/astrid/activities/TaskModificationActivity.java index 3d8025f5c..0d398d299 100644 --- a/src/com/timsu/astrid/activities/TaskModificationActivity.java +++ b/src/com/timsu/astrid/activities/TaskModificationActivity.java @@ -26,6 +26,11 @@ import com.timsu.astrid.data.task.AbstractTaskModel; import com.timsu.astrid.data.task.TaskController; import com.timsu.astrid.data.task.TaskIdentifier; +/** Abstract activity that operates on a single task. Use the generic parameter + * to pass in the model class you are working with. + * + * @author timsu + */ public abstract class TaskModificationActivity extends Activity { public static final String LOAD_INSTANCE_TOKEN = "id"; diff --git a/src/com/timsu/astrid/data/AbstractController.java b/src/com/timsu/astrid/data/AbstractController.java index 8663f7e47..470da6f1e 100644 --- a/src/com/timsu/astrid/data/AbstractController.java +++ b/src/com/timsu/astrid/data/AbstractController.java @@ -1,5 +1,5 @@ /* - * ASTRID: Android's Simple Task Recording Dame + * ASTRID: Android's Simple Task Recording Dashboard * * Copyright (c) 2009 Tim Su * @@ -26,7 +26,7 @@ import android.app.Activity; import android.database.Cursor; import android.util.Log; - +/** Abstract controller class. Mostly contains some static fields */ abstract public class AbstractController { protected Activity activity; diff --git a/src/com/timsu/astrid/data/AbstractModel.java b/src/com/timsu/astrid/data/AbstractModel.java index ec64c3a94..85cbc1a62 100644 --- a/src/com/timsu/astrid/data/AbstractModel.java +++ b/src/com/timsu/astrid/data/AbstractModel.java @@ -1,5 +1,5 @@ /* - * ASTRID: Android's Simple Task Recording Dame + * ASTRID: Android's Simple Task Recording Dashboard * * Copyright (c) 2009 Tim Su * @@ -24,6 +24,7 @@ import java.util.Date; import android.content.ContentValues; import android.database.Cursor; +/** A data object backed by a database */ public abstract class AbstractModel { /* Data Source Ordering: diff --git a/src/com/timsu/astrid/data/Identifier.java b/src/com/timsu/astrid/data/Identifier.java index 6bd3f15b2..68a228116 100644 --- a/src/com/timsu/astrid/data/Identifier.java +++ b/src/com/timsu/astrid/data/Identifier.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data; /** Identifier of a single object. Extend this class to create your own */ diff --git a/src/com/timsu/astrid/data/enums/Importance.java b/src/com/timsu/astrid/data/enums/Importance.java index e83cb3dda..a5f9bac26 100644 --- a/src/com/timsu/astrid/data/enums/Importance.java +++ b/src/com/timsu/astrid/data/enums/Importance.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.enums; import com.timsu.astrid.R; diff --git a/src/com/timsu/astrid/data/location/GeoPoint.java b/src/com/timsu/astrid/data/location/GeoPoint.java index 6490024b8..e3bfbcb9d 100644 --- a/src/com/timsu/astrid/data/location/GeoPoint.java +++ b/src/com/timsu/astrid/data/location/GeoPoint.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.location; public class GeoPoint { diff --git a/src/com/timsu/astrid/data/tag/AbstractTagModel.java b/src/com/timsu/astrid/data/tag/AbstractTagModel.java index 75ae137ab..0b56ef07e 100644 --- a/src/com/timsu/astrid/data/tag/AbstractTagModel.java +++ b/src/com/timsu/astrid/data/tag/AbstractTagModel.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.tag; import java.util.Date; diff --git a/src/com/timsu/astrid/data/tag/TagController.java b/src/com/timsu/astrid/data/tag/TagController.java index 31d75725f..82f50de58 100644 --- a/src/com/timsu/astrid/data/tag/TagController.java +++ b/src/com/timsu/astrid/data/tag/TagController.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.tag; import java.util.HashMap; @@ -16,6 +35,7 @@ import com.timsu.astrid.data.tag.AbstractTagModel.TagModelDatabaseHelper; import com.timsu.astrid.data.tag.TagToTaskMapping.TagToTaskMappingDatabaseHelper; import com.timsu.astrid.data.task.TaskIdentifier; +/** Controller for Tag-related operations */ public class TagController extends AbstractController { private SQLiteDatabase tagDatabase, tagToTaskMapDatabase; diff --git a/src/com/timsu/astrid/data/tag/TagIdentifier.java b/src/com/timsu/astrid/data/tag/TagIdentifier.java index 7a6f24b51..4308d09f5 100644 --- a/src/com/timsu/astrid/data/tag/TagIdentifier.java +++ b/src/com/timsu/astrid/data/tag/TagIdentifier.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.tag; import com.timsu.astrid.data.Identifier; diff --git a/src/com/timsu/astrid/data/tag/TagModelForView.java b/src/com/timsu/astrid/data/tag/TagModelForView.java index 65b6158a6..ec19572d1 100644 --- a/src/com/timsu/astrid/data/tag/TagModelForView.java +++ b/src/com/timsu/astrid/data/tag/TagModelForView.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.tag; import android.database.Cursor; @@ -5,8 +24,7 @@ import android.database.Cursor; import com.timsu.astrid.data.AbstractController; - -/** Fields that you would want to see in the TaskView activity */ +/** Tag model for viewing purposes. Contains task name */ public class TagModelForView extends AbstractTagModel { static String[] FIELD_LIST = new String[] { diff --git a/src/com/timsu/astrid/data/tag/TagToTaskMapping.java b/src/com/timsu/astrid/data/tag/TagToTaskMapping.java index 867c7c529..c26a5799a 100644 --- a/src/com/timsu/astrid/data/tag/TagToTaskMapping.java +++ b/src/com/timsu/astrid/data/tag/TagToTaskMapping.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.tag; import android.content.ContentValues; @@ -12,11 +31,7 @@ import com.timsu.astrid.data.AbstractModel; import com.timsu.astrid.data.task.TaskIdentifier; -/** A single tag on a task - * - * @author timsu - * - */ +/** A single tag on a task */ public class TagToTaskMapping extends AbstractModel { /** Version number of this model */ diff --git a/src/com/timsu/astrid/data/task/AbstractTaskModel.java b/src/com/timsu/astrid/data/task/AbstractTaskModel.java index 8b0d5fd6a..ddcf99ad2 100644 --- a/src/com/timsu/astrid/data/task/AbstractTaskModel.java +++ b/src/com/timsu/astrid/data/task/AbstractTaskModel.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import java.util.Date; diff --git a/src/com/timsu/astrid/data/task/TaskController.java b/src/com/timsu/astrid/data/task/TaskController.java index 819ec5278..15f5053dc 100644 --- a/src/com/timsu/astrid/data/task/TaskController.java +++ b/src/com/timsu/astrid/data/task/TaskController.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import java.util.ArrayList; @@ -12,6 +31,7 @@ import android.database.sqlite.SQLiteOpenHelper; import com.timsu.astrid.data.AbstractController; import com.timsu.astrid.data.task.AbstractTaskModel.TaskModelDatabaseHelper; +/** Controller for task-related operations */ public class TaskController extends AbstractController { private SQLiteDatabase database; diff --git a/src/com/timsu/astrid/data/task/TaskIdentifier.java b/src/com/timsu/astrid/data/task/TaskIdentifier.java index a1c3c0741..3bdb06195 100644 --- a/src/com/timsu/astrid/data/task/TaskIdentifier.java +++ b/src/com/timsu/astrid/data/task/TaskIdentifier.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import com.timsu.astrid.data.Identifier; diff --git a/src/com/timsu/astrid/data/task/TaskModelForEdit.java b/src/com/timsu/astrid/data/task/TaskModelForEdit.java index 3efb6cdb6..aef3c2e66 100644 --- a/src/com/timsu/astrid/data/task/TaskModelForEdit.java +++ b/src/com/timsu/astrid/data/task/TaskModelForEdit.java @@ -1,11 +1,30 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import java.util.Date; -import com.timsu.astrid.data.enums.Importance; - import android.database.Cursor; +import com.timsu.astrid.data.enums.Importance; + /** Fields that you would want to edit in the TaskModel */ diff --git a/src/com/timsu/astrid/data/task/TaskModelForList.java b/src/com/timsu/astrid/data/task/TaskModelForList.java index 650646f84..3cf21df02 100644 --- a/src/com/timsu/astrid/data/task/TaskModelForList.java +++ b/src/com/timsu/astrid/data/task/TaskModelForList.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import java.util.Collections; diff --git a/src/com/timsu/astrid/data/task/TaskModelForView.java b/src/com/timsu/astrid/data/task/TaskModelForView.java index 16a9a3f0b..b189e44f4 100644 --- a/src/com/timsu/astrid/data/task/TaskModelForView.java +++ b/src/com/timsu/astrid/data/task/TaskModelForView.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.data.task; import java.util.Date; diff --git a/src/com/timsu/astrid/utilities/DateUtilities.java b/src/com/timsu/astrid/utilities/DateUtilities.java index 56cd31dc6..95c2dd4a9 100644 --- a/src/com/timsu/astrid/utilities/DateUtilities.java +++ b/src/com/timsu/astrid/utilities/DateUtilities.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.utilities; import android.content.res.Resources; diff --git a/src/com/timsu/astrid/widget/DateControlSet.java b/src/com/timsu/astrid/widget/DateControlSet.java index 179a53fac..873dc72ae 100644 --- a/src/com/timsu/astrid/widget/DateControlSet.java +++ b/src/com/timsu/astrid/widget/DateControlSet.java @@ -1,5 +1,7 @@ /* - * ASTRID: Android's Simple Task Recording Dame + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/com/timsu/astrid/widget/NumberPicker.java b/src/com/timsu/astrid/widget/NumberPicker.java index 2ceae7799..c0a21ae45 100644 --- a/src/com/timsu/astrid/widget/NumberPicker.java +++ b/src/com/timsu/astrid/widget/NumberPicker.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.widget; import android.content.Context; diff --git a/src/com/timsu/astrid/widget/NumberPickerButton.java b/src/com/timsu/astrid/widget/NumberPickerButton.java index d637f29f1..b4a8cecfe 100644 --- a/src/com/timsu/astrid/widget/NumberPickerButton.java +++ b/src/com/timsu/astrid/widget/NumberPickerButton.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.widget; import android.content.Context; diff --git a/src/com/timsu/astrid/widget/NumberPickerDialog.java b/src/com/timsu/astrid/widget/NumberPickerDialog.java index f534efa8c..583f129fa 100644 --- a/src/com/timsu/astrid/widget/NumberPickerDialog.java +++ b/src/com/timsu/astrid/widget/NumberPickerDialog.java @@ -1,3 +1,22 @@ +/* + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package com.timsu.astrid.widget; import android.app.AlertDialog; diff --git a/src/com/timsu/astrid/widget/TimeDurationControlSet.java b/src/com/timsu/astrid/widget/TimeDurationControlSet.java index d33a7723c..d9c59d0c9 100644 --- a/src/com/timsu/astrid/widget/TimeDurationControlSet.java +++ b/src/com/timsu/astrid/widget/TimeDurationControlSet.java @@ -1,5 +1,7 @@ /* - * ASTRID: Android's Simple Task Recording Dame + * ASTRID: Android's Simple Task Recording Dashboard + * + * Copyright (c) 2009 Tim Su * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by