Copyright (c) 2011, 2012, Digital Lizard (Oscar Key, Thomas Boby)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the...
If you think the Android project BBC-News-Reader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*******************************************************************************
* BBC News Reader//fromwww.java2s.com
* Released under the BSD License. See README or LICENSE.
* Copyright (c) 2011, Digital Lizard (Oscar Key, Thomas Boby)
* All rights reserved.
******************************************************************************/package com.digitallizard.bbcnewsreader.data;
import android.content.ContentValues;
publicclass WrapBackwards {
publicstaticlong insertWithOnConflict(DatabaseHelper db, String table, ContentValues values, int conflictAlgorithm) {
return db.insertWithOnConflict(table, values, conflictAlgorithm);
}
}