Codota Logo
ExpressedInTag
Code IndexAdd Codota to your IDE (free)

How to use
ExpressedInTag
in
uk.ac.ebi.intact.application.dataConversion.psiUpload.model

Best Java code snippets using uk.ac.ebi.intact.application.dataConversion.psiUpload.model.ExpressedInTag (Showing top 15 results out of 315)

  • Common ways to obtain ExpressedInTag
private void myMethod () {
ExpressedInTag e =
  • Codota IconConversion.psiUpload.model.ProteinParticipantTag proteinParticipantTag;proteinParticipantTag.getExpressedIn()
  • Codota IconIterator iterator;(ExpressedInTag) iterator.next()
  • Smart code suggestions by Codota
}
origin: uk.ac.ebi.intact.app/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.util/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.app/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.app/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.util/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.util/data-conversion

      expressedInAnnotations.add( new ExpressedInTag( annotation ) );
    } catch ( IllegalArgumentException e ) {
      MessageHolder.getInstance().addParserMessage( new Message( root, e.getMessage() ) );
for ( Iterator iterator = expressedInAnnotations.iterator(); iterator.hasNext() && null == expressedIn; ) {
  ExpressedInTag tmp = (ExpressedInTag) iterator.next();
  if ( tmp.getProteinInteractorID().equals( id ) ) {
    expressedIn = tmp;
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

  throw new IllegalArgumentException( "Could not check ExpressedInTag if the given parameter is null" );
String shortlabel = expressedIn.getBioSourceShortlabel();
origin: uk.ac.ebi.intact.app/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.util/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.app/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public int hashCode() {
  int result;
  result = proteinInteractor.hashCode();
  result = 29 * result + role.hashCode();
  result = 29 * result + ( expressedIn != null ? expressedIn.hashCode() : 0 );
  result = 29 * result + ( features != null ? features.hashCode() : 0 );
  result = 29 * result + ( isTaggedProtein != null ? isTaggedProtein.hashCode() : 0 );
  result = 29 * result + ( isOverExpressedProtein != null ? isOverExpressedProtein.hashCode() : 0 );
  return result;
}
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

public boolean equals( Object o ) {
  if ( this == o ) {
    return true;
  }
  if ( !( o instanceof ProteinParticipantTag ) ) {
    return false;
  }
  final ProteinParticipantTag proteinParticipantTag = (ProteinParticipantTag) o;
  if ( expressedIn != null ? !expressedIn.equals( proteinParticipantTag.expressedIn ) : proteinParticipantTag.expressedIn != null ) {
    return false;
  }
  if ( features != null ? !features.equals( proteinParticipantTag.features ) : proteinParticipantTag.features != null ) {
    return false;
  }
  if ( isOverExpressedProtein != null ? !isOverExpressedProtein.equals( proteinParticipantTag.isOverExpressedProtein ) : proteinParticipantTag.isOverExpressedProtein != null ) {
    return false;
  }
  if ( isTaggedProtein != null ? !isTaggedProtein.equals( proteinParticipantTag.isTaggedProtein ) : proteinParticipantTag.isTaggedProtein != null ) {
    return false;
  }
  if ( !proteinInteractor.equals( proteinParticipantTag.proteinInteractor ) ) {
    return false;
  }
  if ( !role.equals( proteinParticipantTag.role ) ) {
    return false;
  }
  return true;
}
origin: uk.ac.ebi.intact.util/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
origin: uk.ac.ebi.intact.dataexchange.psimi.legacy/data-conversion

BioSource bs = ExpressedInChecker.getBioSource( expressedIn.getBioSourceShortlabel() );
component.setExpressedIn( bs );
IntactContext.getCurrentInstance().getDataContext().getDaoFactory().getComponentDao().update( component );
uk.ac.ebi.intact.application.dataConversion.psiUpload.modelExpressedInTag

Javadoc

That class .

Most used methods

  • <init>
  • equals
  • getBioSourceShortlabel
  • getProteinInteractorID
  • hashCode

Popular in Java

  • Making http requests using okhttp
  • startActivity (Activity)
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • URI (java.net)
    Represents a Uniform Resource Identifier (URI) reference. Aside from some minor deviations noted bel
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Iterator (java.util)
    An iterator over a collection. Iterator takes the place of Enumeration in the Java Collections Frame
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
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