Uses of Interface
info.sswap.api.model.SSWAPProperty

Packages that use SSWAPProperty
info.sswap.api.input.io   
info.sswap.api.model Main package for SSWAP API 
info.sswap.impl.empire.model   
 

Uses of SSWAPProperty in info.sswap.api.input.io
 

Methods in info.sswap.api.input.io with parameters of type SSWAPProperty
protected  PropertyInput SSWAPIndividualDeserializer.deserialize(SSWAPProperty prop)
           
 

Uses of SSWAPProperty in info.sswap.api.model
 

Methods in info.sswap.api.model that return SSWAPProperty
 SSWAPProperty SSWAPIndividual.addProperty(SSWAPPredicate predicate, SSWAPIndividual individual)
          Adds a property to this individual with the specified individual as the value.
 SSWAPProperty SSWAPIndividual.addProperty(SSWAPPredicate predicate, SSWAPLiteral literal)
          Adds a property to this individual with the specified literal value
 SSWAPProperty SSWAPIndividual.addProperty(SSWAPPredicate predicate, java.lang.String value)
          Adds a property to this individual with the specified value.
 SSWAPProperty SSWAPIndividual.addProperty(SSWAPPredicate predicate, java.lang.String value, java.net.URI datatype)
          Adds a property to this individual with the specified literal value with the specified datatype.
 SSWAPProperty SSWAPIndividual.getProperty(SSWAPPredicate predicate)
          Gets the property by its Predicate.
 SSWAPProperty SSWAPIndividual.setProperty(SSWAPPredicate predicate, SSWAPIndividual individual)
          Sets the value of the property to the individual.
 SSWAPProperty SSWAPIndividual.setProperty(SSWAPPredicate predicate, SSWAPLiteral literal)
          Sets the value of the property to the literal object.
 SSWAPProperty SSWAPIndividual.setProperty(SSWAPPredicate predicate, java.lang.String value)
          Sets the value of the property to the specified value.
 SSWAPProperty SSWAPIndividual.setProperty(SSWAPPredicate predicate, java.lang.String value, java.net.URI datatype)
          Sets the value of the property to the specified value and datatype URI.
 

Methods in info.sswap.api.model that return types with arguments of type SSWAPProperty
 java.util.Collection<SSWAPProperty> SSWAPIndividual.getProperties()
          Gets all the properties for this individual.
 java.util.Collection<SSWAPProperty> SSWAPIndividual.getProperties(SSWAPPredicate predicate)
          Gets all the properties (and their values) for the predicate
 java.util.Collection<SSWAPProperty> SSWAPIndividual.hasValue(SSWAPElement element)
          Retrieves all properties of the individual with the specified value (regardless of the predicate of these properties)
 

Methods in info.sswap.api.model with parameters of type SSWAPProperty
 void SSWAPIndividual.removeProperty(SSWAPProperty property)
          Removes a single property instance from this individual (identified by the specified SSWAPProperty instance).
 

Uses of SSWAPProperty in info.sswap.impl.empire.model
 

Classes in info.sswap.impl.empire.model that implement SSWAPProperty
 class PropertyImpl
          Implementation of SSWAPProperty
 

Fields in info.sswap.impl.empire.model with type parameters of type SSWAPProperty
private  java.util.HashMap<java.net.URI,java.util.List<SSWAPProperty>> IndividualImpl.properties
          The list of all visible SSWAPProperties of this individual.
 

Methods in info.sswap.impl.empire.model that return SSWAPProperty
 SSWAPProperty IndividualImpl.addProperty(SSWAPPredicate predicate, SSWAPIndividual individual)
           
 SSWAPProperty IndividualImpl.addProperty(SSWAPPredicate predicate, SSWAPLiteral literal)
           
 SSWAPProperty IndividualImpl.addProperty(SSWAPPredicate predicate, java.lang.String value)
           
 SSWAPProperty IndividualImpl.addProperty(SSWAPPredicate predicate, java.lang.String value, java.net.URI datatype)
           
private static SSWAPProperty ProtocolImpl.getCorrespondingRDGProperty(SSWAPProperty protocolProperty, java.util.Collection<SSWAPProperty> rdgProperties)
          Returns the corresponding property in the RDG individual for the specified Protocol graph property.
 SSWAPProperty IndividualImpl.getProperty(SSWAPPredicate predicate)
           
 SSWAPProperty IndividualImpl.setProperty(SSWAPPredicate predicate, SSWAPIndividual individual)
           
 SSWAPProperty IndividualImpl.setProperty(SSWAPPredicate predicate, SSWAPLiteral literal)
           
 SSWAPProperty IndividualImpl.setProperty(SSWAPPredicate predicate, java.lang.String value)
           
 SSWAPProperty IndividualImpl.setProperty(SSWAPPredicate predicate, java.lang.String value, java.net.URI datatype)
           
 

Methods in info.sswap.impl.empire.model that return types with arguments of type SSWAPProperty
private  java.util.Map<SSWAPProperty,SSWAPProperty> IndividualImpl.getEquivalentPropertiesMap()
           
private  java.util.Map<SSWAPProperty,SSWAPProperty> IndividualImpl.getEquivalentPropertiesMap()
           
 java.util.Collection<SSWAPProperty> IndividualImpl.getProperties()
          Gets a set of properties for this object.
 java.util.Collection<SSWAPProperty> IndividualImpl.getProperties(SSWAPPredicate predicate)
           
private  java.util.List<SSWAPProperty> IndividualImpl.getPropertyListForURI(java.net.URI name)
          Gets a list of properties from the properties map that holds all the SSWAPProperties with the given URI.
 java.util.Collection<SSWAPProperty> IndividualImpl.hasValue(SSWAPElement element)
           
 

Methods in info.sswap.impl.empire.model with parameters of type SSWAPProperty
(package private)  void IndividualImpl.addProperty(SSWAPProperty property)
           
private  void IndividualImpl.doAddProperty(SSWAPProperty property)
           
private  void IndividualImpl.doRemoveProperty(SSWAPProperty property)
           
private static SSWAPProperty ProtocolImpl.getCorrespondingRDGProperty(SSWAPProperty protocolProperty, java.util.Collection<SSWAPProperty> rdgProperties)
          Returns the corresponding property in the RDG individual for the specified Protocol graph property.
private static boolean IndividualImpl.isRDGPropertyDefined(SSWAPProperty rdgProperty, java.util.Collection<SSWAPProperty> properties)
          Checks whether a property defined in the RDG is defined for this individual (or whether a subproperty of the RDG's property is defined for this individual)
 void IndividualImpl.removeProperty(SSWAPProperty property)
          Removes a property from this individual.
(package private)  void IndividualImpl.setProperty(SSWAPProperty property)
           
 

Method parameters in info.sswap.impl.empire.model with type arguments of type SSWAPProperty
private  void IndividualImpl.detachProperties(java.util.Collection<SSWAPProperty> properties)
          Detaches SSWAPProperties from this individual and source model.
private static SSWAPProperty ProtocolImpl.getCorrespondingRDGProperty(SSWAPProperty protocolProperty, java.util.Collection<SSWAPProperty> rdgProperties)
          Returns the corresponding property in the RDG individual for the specified Protocol graph property.
private static boolean IndividualImpl.isRDGPropertyDefined(SSWAPProperty rdgProperty, java.util.Collection<SSWAPProperty> properties)
          Checks whether a property defined in the RDG is defined for this individual (or whether a subproperty of the RDG's property is defined for this individual)
 



Copyright (c) 2011, iPlant Collaborative, University of Arizona, Cold Spring Harbor Laboratories, University of Texas at Austin.