C# Class TagTool.Analysis.TagLayoutGuess

A guess at the layout of a tag.
Afficher le fichier Open project: TheGuardians/TagTool Class Usage Examples

Méthodes publiques

Méthode Description
Accept ( ITagElementGuessVisitor visitor ) : void

Dispatches each guess in the layout to a visitor object.

Add ( uint offset, ITagElementGuess guess ) : void

Adds a guess to the layout.

Merge ( TagLayoutGuess otherLayout ) : void

Merges another layout into this one.

TagLayoutGuess ( uint size ) : System
TryGet ( uint offset ) : ITagElementGuess

Tries to get the guess at an offset.

Method Details

Accept() public méthode

Dispatches each guess in the layout to a visitor object.
public Accept ( ITagElementGuessVisitor visitor ) : void
visitor ITagElementGuessVisitor The visitor object.
Résultat void

Add() public méthode

Adds a guess to the layout.
public Add ( uint offset, ITagElementGuess guess ) : void
offset uint The offset of the guess from the beginning of the layout.
guess ITagElementGuess The guess to add.
Résultat void

Merge() public méthode

Merges another layout into this one.
public Merge ( TagLayoutGuess otherLayout ) : void
otherLayout TagLayoutGuess The layout to merge with.
Résultat void

TagLayoutGuess() public méthode

public TagLayoutGuess ( uint size ) : System
size uint
Résultat System

TryGet() public méthode

Tries to get the guess at an offset.
public TryGet ( uint offset ) : ITagElementGuess
offset uint The offset to get the guess at.
Résultat ITagElementGuess