package org.openlca.ecospold;
public interface ITechnology {
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public abstract String getText();
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public abstract void setText(String value);
}