* <li>exception occured because of component is readonly
* and wasn't stored</li>
* </ol>
*/
public void _store() {
IOException ioE = null;
try {
oObj.store();
stored = true;
} catch (IOException e) {
stored = false;
ioE = e;
}
if (oObj.hasLocation() && !oObj.isReadonly()) {
tRes.tested("store()", stored);
if (!stored) {
log.println("Couldn't store : " + ioE.getMessage());
ioE.printStackTrace(log);
}
} else {
tRes.tested("store()", !stored);
if (stored) {
if (!oObj.hasLocation()) {