| org.geotools.graph.io.GraphReaderWriter
All known Subclasses: org.geotools.graph.io.standard.AbstractReaderWriter,
GraphReaderWriter | public interface GraphReaderWriter (Code) | | Reads and writes features to and from some permanent form.
author: Justin Deoliveira, Refractions Research Inc, jdeolive@refractions.net |
getProperty | public Object getProperty(String name)(Code) | | Returns a property for the reader/writer. This method will return null
if the property has not been set with a call to setProperty(String,Object).
Parameters: name - Name of the property. Value of the property or null if the property is undefined. |
setProperty | public void setProperty(String name, Object obj)(Code) | | Sets a property for the reader/writer.
Parameters: name - Name of the property. Parameters: obj - Value of the property. |
write | public void write(Graph g) throws Exception(Code) | | Writes the graph to a permanent representation.
Parameters: g - The graph to be throws: Exception - |
|
|