C# 클래스 TagTool.Analysis.TagLayoutGuess

A guess at the layout of a tag.
파일 보기 프로젝트 열기: TheGuardians/TagTool 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Accept() 공개 메소드

Dispatches each guess in the layout to a visitor object.
public Accept ( ITagElementGuessVisitor visitor ) : void
visitor ITagElementGuessVisitor The visitor object.
리턴 void

Add() 공개 메소드

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.
리턴 void

Merge() 공개 메소드

Merges another layout into this one.
public Merge ( TagLayoutGuess otherLayout ) : void
otherLayout TagLayoutGuess The layout to merge with.
리턴 void

TagLayoutGuess() 공개 메소드

public TagLayoutGuess ( uint size ) : System
size uint
리턴 System

TryGet() 공개 메소드

Tries to get the guess at an offset.
public TryGet ( uint offset ) : ITagElementGuess
offset uint The offset to get the guess at.
리턴 ITagElementGuess