@Override public DBDecoderFactory getDecoderFact() { return decoderFactory != null ? decoderFactory : DefaultDBDecoder.FACTORY; }
@Override public void setDecoderFact(final DBDecoderFactory fact) { decoderFactory = fact; }
/** * Returns the DBDecoderFactory used by this Datastore * * @return the decoder factory * @see DBDecoderFactory */ DBDecoderFactory getDecoderFact();
/** * Sets the DBDecoderFactory to use in this Datastore * * @param fact the DBDecoderFactory to use */ void setDecoderFact(DBDecoderFactory fact);