Uses of Interface
com.microsoft.tfs.core.memento.Memento

Packages that use Memento
com.microsoft.tfs.core.checkinpolicies   
com.microsoft.tfs.core.clients.workitem.query.qe   
com.microsoft.tfs.core.externaltools   
com.microsoft.tfs.core.memento   
com.microsoft.tfs.core.util   
 

Uses of Memento in com.microsoft.tfs.core.checkinpolicies
 

Methods in com.microsoft.tfs.core.checkinpolicies that return Memento
 Memento PolicyDefinition.getConfigurationMemento()
           
 

Methods in com.microsoft.tfs.core.checkinpolicies with parameters of type Memento
static PolicyDefinition PolicyDefinition.fromMemento(Memento definitionMemento)
          Reads a full PolicyDefinition from the given memento and its children.
 void PolicyInstance.loadConfiguration(Memento configurationMemento)
           Loads run-time configuration information from the given Memento, which was previously build by a call to PolicyInstance.saveConfiguration(Memento).
abstract  void PolicyBase.loadConfiguration(Memento configurationMemento)
           Loads run-time configuration information from the given Memento, which was previously build by a call to PolicyInstance.saveConfiguration(Memento).
 void PolicyInstance.saveConfiguration(Memento confgurationMemento)
           Saves the run-time configuration of this instance to the given (empty except for name) Memento object, which will be persisted by the framework in the policy definition in the Team Foundation Server.
abstract  void PolicyBase.saveConfiguration(Memento configurationMemento)
           Saves the run-time configuration of this instance to the given (empty except for name) Memento object, which will be persisted by the framework in the policy definition in the Team Foundation Server.
 void PolicyDefinition.toMemento(Memento definitionMemento)
          Writes this definition's data into the given empty Memento.
 void PolicyEvaluationStatus.update(int priority, java.lang.String[] scopeExpressions, Memento configurationMemento)
          Updates this status for re-use with a new configuration.
 

Constructors in com.microsoft.tfs.core.checkinpolicies with parameters of type Memento
PolicyDefinition(PolicyType type, Memento configurationMemento, boolean enabled, int priority, java.lang.String[] scopeExpressions)
          Constructs a PolicyDefinition to hold the given information.
 

Uses of Memento in com.microsoft.tfs.core.clients.workitem.query.qe
 

Methods in com.microsoft.tfs.core.clients.workitem.query.qe with parameters of type Memento
 void ResultOptions.loadFromMemento(Memento memento)
          Restores the viewable state of the ResultOptions (column widths) from the given Memento.
 void ResultOptions.saveToMemento(Memento memento)
          Saves the viewable state of the ResultOptions (column widths) to the given empty Memento.
 

Uses of Memento in com.microsoft.tfs.core.externaltools
 

Methods in com.microsoft.tfs.core.externaltools with parameters of type Memento
static ExternalToolset ExternalToolset.loadFromMemento(Memento memento)
          Loads toolset state from the given Memento, which can have any name.
static ExternalToolAssociation ExternalToolAssociation.loadFromMemento(Memento memento)
          Loads association state from the given Memento, which can have any name.
static ExternalTool ExternalTool.loadFromMemento(Memento memento)
          Loads tool state from the given Memento, which can have any name.
 void ExternalToolset.saveToMemento(Memento memento)
          Saves this toolset's state to the given Memento, which should have a name (of the caller's choice) but no other data.
 void ExternalToolAssociation.saveToMemento(Memento memento)
          Saves this association's state to the given Memento, which should have a name (of the caller's choice) but no other data.
 void ExternalTool.saveToMemento(Memento memento)
          Saves this tool's state to the given Memento, which should have a name (of the caller's choice) but no other data.
 

Uses of Memento in com.microsoft.tfs.core.memento
 

Classes in com.microsoft.tfs.core.memento that implement Memento
 class XMLMemento
           XMLMemento is an implementation of Memento which serializes its data to/from XML streams.
 

Methods in com.microsoft.tfs.core.memento that return Memento
 Memento XMLMemento.createChild(java.lang.String name)
           Creates a new Memento with the given name and attaches it as a child to this Memento.
 Memento Memento.createChild(java.lang.String name)
           Creates a new Memento with the given name and attaches it as a child to this Memento.
 Memento[] XMLMemento.getAllChildren()
          Gets all the children.
 Memento[] Memento.getAllChildren()
          Gets all the children.
 Memento XMLMemento.getChild(java.lang.String name)
          Returns a child with the given name.
 Memento Memento.getChild(java.lang.String name)
          Returns a child with the given name.
 Memento[] XMLMemento.getChildren(java.lang.String name)
          Returns all children with the given name.
 Memento[] Memento.getChildren(java.lang.String name)
          Returns all children with the given name.
 Memento[] XMLMemento.removeChildren(java.lang.String name)
          Removes all children with the given name.
 Memento[] Memento.removeChildren(java.lang.String name)
          Removes all children with the given name.
 

Methods in com.microsoft.tfs.core.memento with parameters of type Memento
 void XMLMemento.putMemento(Memento memento)
          Copy the special text, attributes, and children from the given Memento into the receiver.
 void Memento.putMemento(Memento memento)
          Copy the special text, attributes, and children from the given Memento into the receiver.
 boolean XMLMemento.removeChild(Memento memento)
          Removes the given child.
 boolean Memento.removeChild(Memento memento)
          Removes the given child.
 

Uses of Memento in com.microsoft.tfs.core.util
 

Methods in com.microsoft.tfs.core.util that return Memento
 Memento MementoRepository.load(java.lang.String key)
          Loads the settings Memento for the given key.
 

Methods in com.microsoft.tfs.core.util with parameters of type Memento
 boolean MementoRepository.save(java.lang.String key, Memento memento)
          Saves the given Memento for the given key.
 



© 2015 Microsoft. All rights reserved.