Flasher Archive
package DCASGUI;
import java.beans.*;
import java.net.URL;
import java.net.MalformedURLException;
public class URLEditor extends PropertyEditorSupport
{
public void setAsText(String s)
{
try
{
setValue(new URL(s));
}
catch (MalformedURLException ex)
{
setValue(null);
}
}
public String getJavaInitializationString()
{
return getValue().toString();
}
}