just reformatting

pull/14/head
Tim Su 14 years ago
parent 61cfc9eb89
commit 56492a8987

@ -124,7 +124,6 @@ public class ShortcutActivity extends Activity {
startActivity(taskListIntent); startActivity(taskListIntent);
} }
finish(); finish();
} }
@ -132,25 +131,28 @@ public class ShortcutActivity extends Activity {
Intent shortcutIntent = new Intent(ContextManager.getContext(), Intent shortcutIntent = new Intent(ContextManager.getContext(),
ShortcutActivity.class); ShortcutActivity.class);
shortcutIntent.setAction(Intent.ACTION_VIEW); shortcutIntent.setAction(Intent.ACTION_VIEW);
shortcutIntent.putExtra(ShortcutActivity.TOKEN_FILTER_TITLE, filter.title); shortcutIntent.putExtra(ShortcutActivity.TOKEN_FILTER_TITLE,
shortcutIntent.putExtra(ShortcutActivity.TOKEN_FILTER_SQL, filter.sqlQuery); filter.title);
if(filter.valuesForNewTasks != null) { shortcutIntent.putExtra(ShortcutActivity.TOKEN_FILTER_SQL,
for(Entry<String, Object> item : filter.valuesForNewTasks.valueSet()) { filter.sqlQuery);
if (filter.valuesForNewTasks != null) {
for (Entry<String, Object> item : filter.valuesForNewTasks.valueSet()) {
String key = TOKEN_FILTER_VALUES_ITEM + item.getKey(); String key = TOKEN_FILTER_VALUES_ITEM + item.getKey();
Object value = item.getValue(); Object value = item.getValue();
// assume one of the big 4... // assume one of the big 4...
if(value instanceof String) if (value instanceof String)
shortcutIntent.putExtra(key, (String) value); shortcutIntent.putExtra(key, (String) value);
else if(value instanceof Integer) else if (value instanceof Integer)
shortcutIntent.putExtra(key, (Integer) value); shortcutIntent.putExtra(key, (Integer) value);
else if(value instanceof Double) else if (value instanceof Double)
shortcutIntent.putExtra(key, (Double) value); shortcutIntent.putExtra(key, (Double) value);
else if(value instanceof Long) else if (value instanceof Long)
shortcutIntent.putExtra(key, (Long) value); shortcutIntent.putExtra(key, (Long) value);
else else
throw new IllegalStateException("Unsupported bundle type " + value.getClass()); //$NON-NLS-1$ throw new IllegalStateException(
"Unsupported bundle type " + value.getClass()); //$NON-NLS-1$
} }
} }
return shortcutIntent; return shortcutIntent;

Loading…
Cancel
Save