public void setText(String text, Prop panel) throws LimelightException
{
if(text == null || text.length() == 0)
return;
if(panel.getTextAccessor() != this)
throw new LimelightException("You may only set text on empty props.");
TextPanel textPanel = new TextPanel(panel);
panel.add(textPanel);
panel.sterilize();
panel.setTextAccessor(textPanel);
textPanel.setText(text, panel);