Uses of Interface
snl.ccss.jpowersystem.BusDevice

Packages that use BusDevice
snl.ccss.jpowersystem This package provides interfaces necessary and abstract classes optional for creating and implementing new power sytem objects. 
 

Uses of BusDevice in snl.ccss.jpowersystem
 

Classes in snl.ccss.jpowersystem that implement BusDevice
 class AbstractBusDevice
          This is an abstract implementation of the BusDevice interface that can be extended by objects representing bus devices in a power sytem.
 

Methods in snl.ccss.jpowersystem that return BusDevice
static BusDevice PowerSystemFactory.createNewBusDevice(java.lang.String busDeviceClassName)
          Creates and returns user-defined implementation of a bus device object.
 

Methods in snl.ccss.jpowersystem with parameters of type BusDevice
 void AbstractBus.add(BusDevice device)
          This method connects the given bus device by adding the bus device to the list of connected bus device objects.
 void Bus.add(BusDevice device)
          This method should at a minimum add the given BusDevice object to its list of attached bus device objects.
 void PowerSystem.add(BusDevice device, Bus bus)
          This method is used to add a BusDevice object to the power system.
 void PowerSystem.move(BusDevice device, Bus newBus)
          This method is used to move a BusDevice object around in a power system.
 void PowerSystem.remove(BusDevice device)
          This method is used to remove a BusDevice object from the power sytem.
 void AbstractBus.remove(BusDevice device)
          This method removes the given bus device by removing it from the list of connected bus device objects.
 void Bus.remove(BusDevice device)
          This method should at a minimum remove the given BusDevice object from its list of attached bus device objects.