Skip to content
Snippets Groups Projects
Commit 99526a9c authored by tjc's avatar tjc
Browse files

add isEmpty

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@12454 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent a3cb306d
Branches
Tags
No related merge requests found
......@@ -160,6 +160,14 @@ public class ReferencesPanel extends JPanel
return referenceQualifier;
}
protected boolean isEmpty()
{
QualifierVector qualifiers = getQualifiers();
if(qualifiers == null)
return true;
return false;
}
private String[] getValues(String txt)
{
String delim = "[\t\n\f\r,]";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment