package org.docs.richfaces; import java.io.File; public class Support { String text = new String(); String items = new String(); public String getItems() { return items; } public void setItems(String items) { this.items = items; } public String getText() { return text; } public void setText(String text) { this.text = text; } }