_lb.setDcrFile(lbRdr.getDcrFile());
} catch (LbReaderException le) {
// XXX ignore
}
Property prop = null;
PropertyReader[] pRdrs = null;
try {
pRdrs = lbRdr.getProperties();
} catch (LbReaderException le) {
// should we throw this exception XXX ???
// or fill in with default values
}
if ((pRdrs != null) && (pRdrs.length > 0)) {
for (int i = 0; i < pRdrs.length; i++) {
prop = new Property();
pRdrs[i].accept(new PropertyVisitor(prop));
_lb.getProperty().add(prop);
}
}