ingenias.editor.rendererxml.JLabelHTML Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nodereled Show documentation
Show all versions of nodereled Show documentation
A simple node-relationship editor
package ingenias.editor.rendererxml;
import javax.swing.JLabel;
import javax.swing.Icon;
import java.awt.*;
import java.net.*;
import ingenias.editor.FontConfiguration;
/**
* Title:
* Description:
* Copyright: Copyright (c) 2004
* Company:
* @author not attributable
* @version 1.0
*/
public class JLabelHTML extends JLabel {
public String iconName="";
public JLabelHTML() {
this.setFont(FontConfiguration.getConfiguration().getStandardFont());
}
public void setText(String text){
//System.err.println(text);
super.setText(""+text+"");
}
}