Class tranPanel
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.Window
|
+----java.awt.Dialog
|
+----tranPanel
- public class tranPanel
- extends Dialog
- implements ActionListener, WindowListener
class to setup an TRANSIENT pane
-
dataValid
-
-
tranPanel(Frame, String)
- Opens a TRAN simulation panel.
-
actionPerformed(ActionEvent)
- This method is needed as this class is an action listener.
-
tempSweep()
- This generates the needed line for temperature variation.
-
toString()
- This generates the needed line for simulation.
-
windowActivated(WindowEvent)
- just to satisfy window listener interface
-
windowClosed(WindowEvent)
- just to satisfy window listener interface
-
windowClosing(WindowEvent)
- we want to know if the panel gets closed (window listener interface)
-
windowDeactivated(WindowEvent)
- just to satisfy window listener interface
-
windowDeiconified(WindowEvent)
- just to satisfy window listener interface
-
windowIconified(WindowEvent)
- just to satisfy window listener interface
-
windowOpened(WindowEvent)
- just to satisfy window listener interface
dataValid
public boolean dataValid
tranPanel
public tranPanel(Frame f,
String netlist)
- Opens a TRAN simulation panel.
- Parameters:
- f - Parent frame
- netlist - netlist to extract all AC sources
actionPerformed
public void actionPerformed(ActionEvent e)
- This method is needed as this class is an action listener.
(this interface is implemented in this class)
- Parameters:
- e - the user event to handle
toString
public String toString()
- This generates the needed line for simulation.
The main class collects everything for simulation by calling this.
- Overrides:
- toString in class Component
tempSweep
public String tempSweep()
- This generates the needed line for temperature variation.
The main class collects additional sweep data by calling this.
windowClosing
public void windowClosing(WindowEvent e)
- we want to know if the panel gets closed (window listener interface)
windowOpened
public void windowOpened(WindowEvent e)
- just to satisfy window listener interface
windowClosed
public void windowClosed(WindowEvent e)
- just to satisfy window listener interface
windowDeiconified
public void windowDeiconified(WindowEvent e)
- just to satisfy window listener interface
windowIconified
public void windowIconified(WindowEvent e)
- just to satisfy window listener interface
windowDeactivated
public void windowDeactivated(WindowEvent e)
- just to satisfy window listener interface
windowActivated
public void windowActivated(WindowEvent e)
- just to satisfy window listener interface