insensa.inforeader
Class CGetPointInformation
java.lang.Object
insensa.inforeader.AbstractInfoReader
insensa.inforeader.CGetPointInformation
- All Implemented Interfaces:
- InfoReader, java.io.Serializable, java.lang.Runnable
public class CGetPointInformation
- extends AbstractInfoReader
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
precisionString
private java.lang.String precisionString
searchValue
private double searchValue
xPos
private int xPos
yPos
private int yPos
NAME
private static final java.lang.String NAME
- See Also:
- Constant Field Values
CGetPointInformation
public CGetPointInformation()
getDependencies
public java.util.List<java.lang.String> getDependencies()
- Description copied from class:
AbstractInfoReader
- Returns a list with names of InfoReaders that have to be executed before
this InfoReader can be executed.
Implementations of class AbstractInfoReader
should override this
method if dependencies are necessary. Example:
List<String> depList = super.getDependencies();
depList.add("countValues");
depList.add("equalBreaksValues");
return depList;
- Specified by:
getDependencies
in interface InfoReader
- Overrides:
getDependencies
in class AbstractInfoReader
- Returns:
- List<String>List with named of InfoReaders(dependencies) for
this InfoReader
- See Also:
AbstractInfoReader.getDependencies()
getInfoElement
public org.jdom.Element getInfoElement()
throws java.io.IOException
- Specified by:
getInfoElement
in interface InfoReader
- Overrides:
getInfoElement
in class AbstractInfoReader
- Returns:
-
- Throws:
java.io.IOException
- See Also:
AbstractInfoReader.getInfoElement()
getInfoName
public java.lang.String getInfoName()
- Returns:
- The name of this InfoReader
- See Also:
InfoReader.getInfoName()
getInfos
public java.util.Vector<java.util.Vector<java.lang.String>> getInfos()
- Returns:
- Information to Display in Data Table
- See Also:
InfoReader.getInfos()
getVariableList
public java.util.List<VariableValue<java.lang.String>> getVariableList()
- Specified by:
getVariableList
in interface InfoReader
- Overrides:
getVariableList
in class AbstractInfoReader
- Returns:
- the variables that can be set or null if there is none
- See Also:
AbstractInfoReader.getVariableList()
readInfos
public void readInfos(CRasterFileInformation file)
throws java.io.FileNotFoundException,
java.io.IOException
- Description copied from interface:
InfoReader
- This method will try to receive all informations from
dependent InfoReader
You can get InfoReader with
file.getInfoReader(nameOfInfoReader);
- Parameters:
file
- File that holds this InfoReader
- Throws:
java.io.FileNotFoundException
java.io.IOException
- See Also:
InfoReader.readInfos(insensa.CRasterFileInformation)
setInfos
public void setInfos(org.jdom.Element eInfo)
throws java.io.IOException
- Description copied from interface:
InfoReader
- Restore saved data
- Throws:
java.io.IOException
- See Also:
InfoReader.setInfos(org.jdom.Element)
setVariableList
public void setVariableList(java.util.List<VariableValue<java.lang.String>> varList)
- Description copied from interface:
InfoReader
- Configure InfoReader
- Specified by:
setVariableList
in interface InfoReader
- Overrides:
setVariableList
in class AbstractInfoReader
- Parameters:
varList
- the List of Variables to be set- See Also:
AbstractInfoReader.setVariableList(java.util.List)