Ignore:
Timestamp:
2012-07-31T11:47:04+12:00 (12 years ago)
Author:
kjdon
Message:

SimpleDocument renamed to BasicDocument

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/service/AbstractGS2TextSearch.java

    r25851 r26042  
    2323import org.apache.log4j.Logger;
    2424import org.greenstone.gsdl3.util.GSXML;
    25 import org.greenstone.gsdl3.util.SimpleDocumentDatabase;
     25import org.greenstone.gsdl3.util.BasicDocumentDatabase;
    2626import org.w3c.dom.Document;
    2727import org.w3c.dom.Element;
     
    6060    protected int maxnumeric = 4;
    6161
    62     SimpleDocumentDatabase gs_doc_db = null;
     62    BasicDocumentDatabase gs_doc_db = null;
    6363
    6464    static Logger logger = Logger.getLogger(org.greenstone.gsdl3.service.AbstractGS2TextSearch.class.getName());
     
    109109
    110110        // replaces default AbstractSearch version with one tied to database
    111         gs_doc_db = new SimpleDocumentDatabase(this.doc, database_type, this.site_home, this.cluster_name, this.index_stem);
     111        gs_doc_db = new BasicDocumentDatabase(this.doc, database_type, this.site_home, this.cluster_name, this.index_stem);
    112112        if (!gs_doc_db.isValid())
    113113        {
Note: See TracChangeset for help on using the changeset viewer.