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

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

public class TextStringAttributeImpl implements TextStringAttribute {
	
	private String layerName;
	private String featureName;
	private String attributeName;
	
	@Override
	public String getLayerName() {
		return layerName;
	}
	@Override
	public void setLayerName(String layerName) {
		this.layerName = layerName;
	}
	@Override
	public String getFeatureName() {
		return featureName;
	}
	@Override
	public void setFeatureName(String featureName) {
		this.featureName = featureName;
	}
	@Override
	public String getAttributeName() {
		return attributeName;
	}
	@Override
	public void setAttributeName(String attributeName) {
		this.attributeName = attributeName;
	}
}
