function WizTodoAndroidHelper() {
this.getUserAlias = getUserAlias;
this.getUserAvatarFileName = getUserAvatarFileName;
this.isPersonalDocument = isPersonalDocument;
this.getLocalDateTime = getLocalDateTime;
this.setDocumentModified = setDocumentModified;
this.getCheckedImageFileName = getCheckedImageFileName;
this.getUnCheckedImageFileName = getUnCheckedImageFileName;
this.initCss = initCss;
this.canEdit = canEdit;
this.setDocumentType = setDocumentType;
this.canInsert = canInsert;
function getUserAlias() {
return window.WizNote.getUserAlias();
}
function getUserAvatarFileName(size) {
return window.WizNote.getUserAvatarFileName(size);
}
function isPersonalDocument() {
return window.WizNote.isPersonalDocument();
}
function getLocalDateTime(dt) {
return window.WizNote.getLocalDateTime(dt);
}
function setDocumentModified() {
window.WizNote.setDocumentModified();
}
function getCheckedImageFileName() {
return window.WizNote.getCheckedImageFileName();
}
function getUnCheckedImageFileName() {
return window.WizNote.getUnCheckedImageFileName();
}
function canEdit() {
return true;
}
function initCss(document) {
initDefaultCss(document, document.head);
}
function setDocumentType(type) {
window.WizNote.setDocumentType(type);
}
function canInsert(caninsert) {
window.WizNote.canInsert(caninsert);
}
}