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

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

public class TextStringTextElementImpl implements TextStringTextElement {

	private String text = "";
	
	public TextStringTextElementImpl() {
	}

	public TextStringTextElementImpl(String text) {
		this.text = text;
	}

	@Override
	public String getText() {
		return text;
	}

	@Override
	public void setText(String text) {
		this.text = text;
	}

}
