| String section = textTitle.getText().trim();
String text = textNewSection.getText().trim();
if (("".equals(section)) || ("".equals(text))) {
return;
}
new NewSectionWorker(
getWikipedia(), this,
page, section, text,
chkForceWatch.isSelected()).start();
}
|