package ca.carleton.gcrc.atlas.module.impl;

import ca.carleton.gcrc.atlas.module.widgets.text.TextBlockHeader;

public class TextBlockHeaderImpl extends ContainsMarkUpTextStringsImpl implements TextBlockHeader {

	private int headerLevel;
	
	public TextBlockHeaderImpl(int headerLevel) {
		this.headerLevel = headerLevel;
	}
	
	@Override
	public int getHeaderLevel() {
		return headerLevel;
	}

}
