Codota Logo
DefaultTraverser.traverseInstitution
Code IndexAdd Codota to your IDE (free)

How to use
traverseInstitution
method
in
uk.ac.ebi.intact.model.visitor.DefaultTraverser

Best Java code snippets using uk.ac.ebi.intact.model.visitor.DefaultTraverser.traverseInstitution (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: uk.ac.ebi.intact.core/intact-core

protected void traverseAnnotatedObject(AnnotatedObject annotatedObject, IntactVisitor... visitors) {
  if (annotatedObject == null) return;
  for (IntactVisitor visitor : visitors) {
    visitor.visitAnnotatedObject(annotatedObject);
  }
  if (annotatedObject instanceof Interaction) {
    traverseInteraction((Interaction) annotatedObject, visitors);
  } else if (annotatedObject instanceof Interactor) {
    traverseInteractor((Interactor) annotatedObject, visitors);
  } else if (annotatedObject instanceof CvObject) {
    traverseCvObject((CvObject) annotatedObject, visitors);
  } else if (annotatedObject instanceof Experiment) {
    traverseExperiment((Experiment) annotatedObject, visitors);
  } else if (annotatedObject instanceof Component) {
    traverseComponent((Component) annotatedObject, visitors);
  } else if (annotatedObject instanceof BioSource) {
    traverseBioSource((BioSource) annotatedObject, visitors);
  } else if (annotatedObject instanceof Feature) {
    traverseFeature((Feature) annotatedObject, visitors);
  } else if (annotatedObject instanceof Publication) {
    traversePublication((Publication) annotatedObject, visitors);
  } else if (annotatedObject instanceof Institution) {
    traverseInstitution((Institution) annotatedObject, visitors);
  } else {
    throw new IllegalArgumentException("Cannot process annotated object of type: " + annotatedObject.getClass().getName());
  }
  traverseAnnotatedObjectCommon(annotatedObject, visitors);
}
origin: uk.ac.ebi.intact.core/intact-core-readonly

protected void traverseAnnotatedObject(AnnotatedObject annotatedObject, IntactVisitor... visitors) {
  if (annotatedObject == null) return;
  for (IntactVisitor visitor : visitors) {
    visitor.visitAnnotatedObject(annotatedObject);
  }
  if (annotatedObject instanceof Interaction) {
    traverseInteraction((Interaction) annotatedObject, visitors);
  } else if (annotatedObject instanceof Interactor) {
    traverseInteractor((Interactor) annotatedObject, visitors);
  } else if (annotatedObject instanceof CvObject) {
    traverseCvObject((CvObject) annotatedObject, visitors);
  } else if (annotatedObject instanceof Experiment) {
    traverseExperiment((Experiment) annotatedObject, visitors);
  } else if (annotatedObject instanceof Component) {
    traverseComponent((Component) annotatedObject, visitors);
  } else if (annotatedObject instanceof BioSource) {
    traverseBioSource((BioSource) annotatedObject, visitors);
  } else if (annotatedObject instanceof Feature) {
    traverseFeature((Feature) annotatedObject, visitors);
  } else if (annotatedObject instanceof Publication) {
    traversePublication((Publication) annotatedObject, visitors);
  } else if (annotatedObject instanceof Institution) {
    traverseInstitution((Institution) annotatedObject, visitors);
  } else {
    throw new IllegalArgumentException("Cannot process annotated object of type: " + annotatedObject.getClass().getName());
  }
  traverseAnnotatedObjectCommon(annotatedObject, visitors);
}
uk.ac.ebi.intact.model.visitorDefaultTraversertraverseInstitution

Popular methods of DefaultTraverser

  • traverse
  • <init>
  • getCurrentHierarchyLevel
  • nextHierarchyLevel
  • previousHierarchyLevel
  • traverseAlias
  • traverseAnnotatedObject
  • traverseAnnotatedObjectCommon
  • traverseAnnotation
  • traverseBioSource
  • traverseComponent
  • traverseConfidence
  • traverseComponent,
  • traverseConfidence,
  • traverseCvObject,
  • traverseExperiment,
  • traverseFeature,
  • traverseInteraction,
  • traverseInteractor,
  • traverseParameter,
  • traversePublication

Popular in Java

  • Finding current android device location
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSharedPreferences (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • IsNull (org.hamcrest.core)
    Is the value null?
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now