COSC-4P82-Final-Project/lib/lilgp/lilgpSetup1.0/javadocs/SubPopsPanel.html

163 lines
6.2 KiB
HTML
Raw Normal View History

2024-04-01 00:01:49 -04:00
<!--NewPage-->
<html>
<head>
<!-- Generated by javadoc on Sat May 10 12:20:47 1997 -->
<a name="_top_"></a>
<title>
Class SubPopsPanel
</title>
</head>
<body>
<h1>
Class SubPopsPanel
</h1>
<pre>
<a href="java.lang.Object.html#_top_">java.lang.Object</a>
|
+----<a href="java.awt.Component.html#_top_">java.awt.Component</a>
|
+----<a href="java.awt.Container.html#_top_">java.awt.Container</a>
|
+----<a href="java.awt.Panel.html#_top_">java.awt.Panel</a>
|
+----SubPopsPanel
</pre>
<hr>
<dl>
<dt> class <b>SubPopsPanel</b>
<dt> extends <a href="java.awt.Panel.html#_top_">Panel</a>
</dl>
This panel contains a <tt>TitlePanel</tt> and a <tt>GridBagPanel</tt>
that accepts input for the following <i>lilgp</i> parameters:
<br><tt>
<ul> <li>multiple.subpops
<li>multiple.exch_gen</ul></tt><p>
After pressing the <tt>go</tt> button, a <tt>SubPopFrame</tt> will
be created to allow the user to setup exchanges between the sub-pops.
If the <tt>purge</tt> button is pressed, then all of the parameters
associated with multiple sub populations will be removed from the
database.
<dl>
<dt> <b>See Also:</b>
<dd> <a href="TitlePanel.html#_top_">TitlePanel</a>, <a href="GridBagPanel.html#_top_">GridBagPanel</a>, <a href="SubPopFrame.html#_top_">SubPopFrame</a>, <a href="ParameterDB.html#purgeOldSubPopParameters">purgeOldSubPopParameters</a>, <a href="ParameterDB.html#purgeOldSubPopExchanges">purgeOldSubPopExchanges</a>
</dl>
<hr>
<a name="index"></a>
<h2>
<img src="images/constructor-index.gif" width=275 height=38 alt="Constructor Index">
</h2>
<dl>
<dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
<a href="#SubPopsPanel()"><b>SubPopsPanel</b></a>()
<dd> Add each of the UI components needed to accept input.
</dl>
<h2>
<img src="images/method-index.gif" width=207 height=38 alt="Method Index">
</h2>
<dl>
<dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
<a href="#action(java.awt.Event, java.lang.Object)"><b>action</b></a>(Event, Object)
<dd> Trap <tt>TextField</tt> events and <tt>Button</tt> events.
<dt> <img src="images/green-ball-small.gif" width=6 height=6 alt=" o ">
<a href="#enableButtons()"><b>enableButtons</b></a>()
<dd> Allow the <tt>SubPopFrame</tt> to re-enable the buttons after the user
closes the frame.
<dt> <img src="images/green-ball-small.gif" width=6 height=6 alt=" o ">
<a href="#flushParameters()"><b>flushParameters</b></a>()
<dd> Collect the contents of each UI component and store it in the
<tt>ParameterDB</tt>.
<dt> <img src="images/green-ball-small.gif" width=6 height=6 alt=" o ">
<a href="#loadParams()"><b>loadParams</b></a>()
<dd> This method is responsible for loading parameters onto the <tt>SubPopsPanel</tt>
after the user opens a parameter file.
</dl>
<a name="constructors"></a>
<h2>
<img src="images/constructors.gif" width=231 height=38 alt="Constructors">
</h2>
<a name="SubPopsPanel"></a>
<a name="SubPopsPanel()"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>SubPopsPanel</b>
<pre>
public SubPopsPanel()
</pre>
<dl>
<dd> Add each of the UI components needed to accept input.
<dl>
<dt> <b>See Also:</b>
<dd> <a href="GridBagPanel.html#addComponent">addComponent</a>
</dl>
</dl>
<a name="methods"></a>
<h2>
<img src="images/methods.gif" width=151 height=38 alt="Methods">
</h2>
<a name="action(java.awt.Event, java.lang.Object)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="action"><b>action</b></a>
<pre>
public boolean action(<a href="java.awt.Event.html#_top_">Event</a> event,
<a href="java.lang.Object.html#_top_">Object</a> arg)
</pre>
<dl>
<dd> Trap <tt>TextField</tt> events and <tt>Button</tt> events.
If the <tt>Go</tt> button has been pressed, then extract
the contents of the field containing <tt>multiple.subpops</tt>
and parse it for errors. If the number of sub-pops
has <b>not</b> changed since the last time the button was
pressed, then simply <tt>show()</tt> the old <tt>SubPopFrame</tt>
(it will contain any previously entered data). Otherwise,
instantiate a new <tt>SubPopFrame</tt> containing the
default values. If the <tt>purge</tt> button has been pressed,
then remove all sub-pop parameters from the database.
<dl>
<dt> <b>Overrides:</b>
<dd> <a href="java.awt.Component.html#action(java.awt.Event, java.lang.Object)">action</a> in class <a href="java.awt.Component.html#_top_">Component</a>
<dt> <b>See Also:</b>
<dd> <a href="SubPopFrame.html#_top_">SubPopFrame</a>, <a href="ParameterDB.html#purgeOldSubPopParameters">purgeOldSubPopParameters</a>, <a href="ParameterDB.html#purgeOldSubPopExchanges">purgeOldSubPopExchanges</a>
</dl>
</dl>
<a name="flushParameters()"><img src="images/green-ball.gif" width=12 height=12 alt=" o "></a>
<a name="flushParameters"><b>flushParameters</b></a>
<pre>
public static void flushParameters()
</pre>
<dl>
<dd> Collect the contents of each UI component and store it in the
<tt>ParameterDB</tt>. The parameters associated with sub-pop
exchanges are flushed into the databse in the <tt>action()</tt>
method in <tt>SubPopFrame</tt>
<dl>
<dt> <b>See Also:</b>
<dd> <a href="ParameterDB.html#_top_">ParameterDB</a>, <a href="SubPopFrame.html#action">action</a>
</dl>
</dl>
<a name="enableButtons()"><img src="images/green-ball.gif" width=12 height=12 alt=" o "></a>
<a name="enableButtons"><b>enableButtons</b></a>
<pre>
public static void enableButtons()
</pre>
<dl>
<dd> Allow the <tt>SubPopFrame</tt> to re-enable the buttons after the user
closes the frame.
<dl>
<dt> <b>See Also:</b>
<dd> <a href="BreedFrame.html#_top_">BreedFrame</a>
</dl>
</dl>
<a name="loadParams()"><img src="images/green-ball.gif" width=12 height=12 alt=" o "></a>
<a name="loadParams"><b>loadParams</b></a>
<pre>
public static void loadParams()
</pre>
<dl>
<dd> This method is responsible for loading parameters onto the <tt>SubPopsPanel</tt>
after the user opens a parameter file. It then calls the <tt>loadParams()</tt>
method in <tt>SubPopFrame</tt>.
<dl>
<dt> <b>See Also:</b>
<dd> <a href="SubPopFrame.html#loadParams">loadParams</a>
</dl>
</dl>
</body>
</html>