Revision 9834 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/edition/writers/AbstractWriter.java

View differences:

AbstractWriter.java
4 4

  
5 5
import com.iver.cit.gvsig.fmap.drivers.ITableDefinition;
6 6
import com.iver.cit.gvsig.fmap.edition.EditionException;
7
import com.iver.cit.gvsig.fmap.edition.IRowEdited;
8 7
import com.iver.cit.gvsig.fmap.edition.IWriter;
9 8

  
10 9
public abstract class AbstractWriter implements IWriter {
11 10
	protected Properties capabilities = new Properties();
12 11
	protected ITableDefinition tableDef;
12
	protected boolean bWriteAll;
13 13
	
14 14
	/**
15 15
	 * A developer can use this Properties for his own purposes. For example, to
......
44 44
		return tableDef;
45 45
	}
46 46

  
47
	/**
48
	 * @return Returns the bWriteAll.
49
	 */
50
	public boolean isWriteAll() {
51
		return bWriteAll;
52
	}
47 53

  
54
	/**
55
	 * @param writeAll
56
	 *            The bWriteAll to set.
57
	 */
58
	public void setWriteAll(boolean writeAll) {
59
		bWriteAll = writeAll;
60
	}
61

  
62

  
48 63
}

Also available in: Unified diff