Skip to content
Snippets Groups Projects
Commit 4c8c4496 authored by tjc's avatar tjc
Browse files

added setObsoleteChanged()

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@10172 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent c5e50be9
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/genebuilder/gff/PropertiesPanel.java,v 1.7 2009-02-17 13:34:45 tjc Exp $ * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/components/genebuilder/gff/PropertiesPanel.java,v 1.8 2009-03-19 11:06:42 tjc Exp $
*/ */
package uk.ac.sanger.artemis.components.genebuilder.gff; package uk.ac.sanger.artemis.components.genebuilder.gff;
...@@ -78,6 +78,7 @@ public class PropertiesPanel extends JPanel ...@@ -78,6 +78,7 @@ public class PropertiesPanel extends JPanel
private boolean empty = true; private boolean empty = true;
/** track if feature isObsolete flag has changed */ /** track if feature isObsolete flag has changed */
private boolean obsoleteChanged = false; private boolean obsoleteChanged = false;
private ButtonGroup phaseButtonGroup; private ButtonGroup phaseButtonGroup;
public PropertiesPanel(final Feature feature) public PropertiesPanel(final Feature feature)
...@@ -979,4 +980,9 @@ public class PropertiesPanel extends JPanel ...@@ -979,4 +980,9 @@ public class PropertiesPanel extends JPanel
{ {
this.empty = empty; this.empty = empty;
} }
public void setObsoleteChanged(boolean obsoleteChanged)
{
obsoleteField.setSelected(obsoleteChanged);
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment