Interface MibParser
-
- All Known Implementing Classes:
JsmiMibParser
public interface MibParserThe Interface MibParser.- Author:
- Alejandro Galue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatacollectionGroupgetDataCollection()Gets the data collection.EventsgetEvents(java.lang.String ueibase)Gets the event list.java.lang.StringgetFormattedErrors()Gets the formatted errors.java.lang.StringgetMibName()Gets the MIB name.java.util.List<java.lang.String>getMissingDependencies()Gets the missing dependencies.java.util.List<PrefabGraph>getPrefabGraphs()Gets the prefab graph templates.booleanparseMib(java.io.File mibFile)Parses the MIB.voidsetMibDirectory(java.io.File mibDirectory)Sets the MIB directory.
-
-
-
Method Detail
-
setMibDirectory
void setMibDirectory(java.io.File mibDirectory)
Sets the MIB directory.- Parameters:
mibDirectory- the MIB directory
-
parseMib
boolean parseMib(java.io.File mibFile)
Parses the MIB.- Parameters:
mibFile- the MIB file- Returns:
- true, if successful
-
getFormattedErrors
java.lang.String getFormattedErrors()
Gets the formatted errors.- Returns:
- the formatted errors
-
getMissingDependencies
java.util.List<java.lang.String> getMissingDependencies()
Gets the missing dependencies.- Returns:
- the missing dependencies
-
getMibName
java.lang.String getMibName()
Gets the MIB name.- Returns:
- the MIB name.
-
getEvents
Events getEvents(java.lang.String ueibase)
Gets the event list.- Parameters:
ueibase- the UEI base- Returns:
- the event list
-
getDataCollection
DatacollectionGroup getDataCollection()
Gets the data collection.- Returns:
- the data collection group
-
getPrefabGraphs
java.util.List<PrefabGraph> getPrefabGraphs()
Gets the prefab graph templates.- Returns:
- the prefab graph templates.
-
-