FileDocCategorySizeDatePackage
SimpleTextTable.javaAPI DocExample1392Sat Feb 03 11:43:44 GMT 2001jdbc.SimpleText

SimpleTextTable

public class SimpleTextTable extends Object

Fields Summary
public String
dir
public String
file
public String
name
Constructors Summary
public SimpleTextTable(String dir, String file)

        this.dir = dir;
        this.file = file;

        // If the filename has the .SDF extension, get rid of it

        if (file.endsWith(SimpleTextDefine.DATA_FILE_EXT)) {
            name = file.substring(0, file.length() -
                        SimpleTextDefine.DATA_FILE_EXT.length());
        }
        else {
            name = file;
        }
    
Methods Summary