* @param encoding The value of the charset parameter of the content type if it is not already present.
* @return The content type containing a charset parameter, e.g. text/html;charset=utf-8
*/
private ContentType generateFullContentType(String contentType, String encoding)
{try { __CLOVER_1_0.M[66]++;
__CLOVER_1_0.S[205]++;ContentType contentTypeObject = new ContentType(contentType);
__CLOVER_1_0.S[206]++;if ((((contentTypeObject.getParameter("charset") == null) && (++__CLOVER_1_0.CT[45] != 0)) || (++__CLOVER_1_0.CF[45] == 0))){
__CLOVER_1_0.S[207]++;contentTypeObject.setParameter("charset", encoding);}
__CLOVER_1_0.S[208]++;return contentTypeObject;
} finally { }}