Package org.moltools.lib

Examples of org.moltools.lib.Renameable


      }
      ChangeableNucleotideSequence s = (ChangeableNucleotideSequence) t;
      switch (col) {
        case 0:
          if (s instanceof Renameable) {
            Renameable n = (Renameable) s;
            n.setName((String) value);
          }           
          else throw new UnsupportedOperationException("Sequence name not editable"); //$NON-NLS-1$
          break;
        case 1:
          try {
View Full Code Here

TOP

Related Classes of org.moltools.lib.Renameable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.