Package org.gvsig.gpe.prov.kml.warnings
Interface IWarningsContainer
- All Known Implementing Classes:
WarningsContainer
public interface IWarningsContainer
- Author:
- Jorge Piera LlodrĂ¡ (piera_jor@gva.es)
-
Method Summary
Modifier and TypeMethodDescriptionbooleanThis method return true if there aren't warnings else returns falseorg.gvsig.tools.exception.BaseExceptiongetElement(int index, org.gvsig.tools.exception.ListBaseException war) This method returns a warning from the listorg.gvsig.tools.exception.ListBaseExceptionThis method return the list of warnings parsing the filevoidsetElement(org.gvsig.tools.exception.BaseException war) This method inserts a new warning into the listvoidsetWarningList(org.gvsig.tools.exception.ListBaseException war) This method inserts a new warning list
-
Method Details
-
areWarnings
boolean areWarnings()This method return true if there aren't warnings else returns false- Returns:
- boolean
-
getWarningList
org.gvsig.tools.exception.ListBaseException getWarningList()This method return the list of warnings parsing the file- Returns:
- ArrayList of warnings
-
setElement
void setElement(org.gvsig.tools.exception.BaseException war) This method inserts a new warning into the list -
getElement
org.gvsig.tools.exception.BaseException getElement(int index, org.gvsig.tools.exception.ListBaseException war) This method returns a warning from the list- Returns:
- int warning
-
setWarningList
void setWarningList(org.gvsig.tools.exception.ListBaseException war) This method inserts a new warning list
-