public LinkState(ISignalSubElemState initialState) { this.id = new StringBuilder(); this.link = new StringBuilder(); this.builder = this.id; this.initialState = initialState; }
public ListItemState(ISignalSubElemState initialState) { this.listItem = new ListItem(string.Empty); this.initialState = initialState; this.isEndPending = false; this.isListItemEndPending = false; }
public CodeState(ISignalSubElemState initialState = null) { this.code = new StringBuilder(); this.previousChar = ' '; this.initialState = initialState; }
public TextState(ISignalSubElemState initialState) { this.initialState = initialState; this.textBuilder = new StringBuilder(); }