Package org.biojava.bio

Examples of org.biojava.bio.Annotation.keys()


      if (def == null) {
        Annotation annotation;
        Object definition;
        annotation = this.term.getAnnotation();
        definition = (annotation != null)
            && (annotation.keys().size() > 0) ? annotation
                .getProperty("def") : null;
                def = definition != null ? definition.toString() : "";
                def = def.replace("\\n", "\n").replace("\\t", "\t").replace("\\", "");
                def = def.trim();
      }
View Full Code Here


      if (def == null) {
        Annotation annotation;
        Object definition;
        annotation = this.term.getAnnotation();
        definition = (annotation != null)
            && (annotation.keys().size() > 0) ? annotation
            .getProperty("def") : null;
        def = definition != null ? definition.toString() : "";
        def = def.replace("\\n", "\n").replace("\\t", "\t").replace("\\", "");
        def = def.trim();
      }
View Full Code Here

      if (def == null) {
        Annotation annotation;
        Object definition;
        annotation = this.term.getAnnotation();
        definition = (annotation != null)
            && (annotation.keys().size() > 0) ? annotation
            .getProperty("def") : null;
        def = definition != null ? definition.toString() : "";
        def = def.replace("\\n", "\n").replace("\\t", "\t").replace("\\", "");
        def = def.trim();
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.