Uses of Class
net.percederberg.mib.symbol.Symbol

Packages that use Symbol
net.percederberg.mib Provides classes for reading and analyzing SNMP MIB files.  
net.percederberg.mib.symbol Provides MIB symbol handling classes.  
 

Uses of Symbol in net.percederberg.mib
 

Methods in net.percederberg.mib that return Symbol
 Symbol Mib.getSymbol(int index)
          Returns a specified symbol in this MIB.
 Symbol Mib.getSymbol(java.lang.String name)
          Returns a specified symbol in this MIB.
 Symbol SymbolFactory.findSymbol(java.lang.String name)
          Finds or creates a symbol with the specified known name.
 Symbol SymbolFactory.createSymbol(java.lang.String name)
          Creates a symbol with the specified known name.
 

Uses of Symbol in net.percederberg.mib.symbol
 

Subclasses of Symbol in net.percederberg.mib.symbol
 class TypeSymbol
          A class containing a type symbol from the MIB file.
 class ValueSymbol
          A class containing a value symbol from the MIB file.
 

Fields in net.percederberg.mib.symbol declared as Symbol
protected  Symbol Symbol.parent
          The parent symbol.
 

Methods in net.percederberg.mib.symbol that return Symbol
 Symbol Symbol.childAt(int index)
          Returns the child at a given position.
 Symbol Symbol.getParent()
          Returns the parent symbol.
protected  Symbol Symbol.findChild(java.lang.String name)
          Searches for a child with a given name.
 

Methods in net.percederberg.mib.symbol with parameters of type Symbol
 void Symbol.setParent(Symbol parent)
          Sets the symbol parent.
protected  void Symbol.addChild(Symbol child)
          Adds a child to this symbol.
protected  void Symbol.removeChild(Symbol child)
          Removes a child from this symbol.
protected  void TypeSymbol.addChild(Symbol child)
          Throws an exception, since this operation is not allowed for type symbols.
 

Constructors in net.percederberg.mib.symbol with parameters of type Symbol
ValueSymbol(java.lang.String name, Type type, Symbol parent, int id)
          Creates a new value symbol with the given parameters.