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

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

Best Java code snippets using uk.ac.ebi.intact.model.visitor.DefaultTraverser.traverseInteractor (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.visitorDefaultTraversertraverseInteractor

Popular methods of DefaultTraverser

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

Popular in Java

  • Making http requests using okhttp
  • findViewById (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • onCreateOptionsMenu (Activity)
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • JFileChooser (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
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