diagapplet.utils
Interface URLLoadInfoPanelInterface

All Known Implementing Classes:
URLLoadInfoJPanel, URLLoadInfoPanel

public interface URLLoadInfoPanelInterface

Common interface to the Swing and AWT Panels for displaying progress while loading a URL/File.


Method Summary
 void force_repaint(int i)
           
 int get_bytes_read()
           
 int get_content_length()
           
 java.lang.String get_URLname()
           
 void inc_bytes_read(int _bytes_read_inc)
           
 void repaint()
           
 void set_bytes_read(int _bytes_read)
           
 void set_content_length(int _content_length)
           
 void set_URLname(java.lang.String _URLName)
           
 void updateDisplay()
           
 

Method Detail

set_bytes_read

void set_bytes_read(int _bytes_read)
                    throws java.lang.Exception
Throws:
java.lang.Exception

inc_bytes_read

void inc_bytes_read(int _bytes_read_inc)
                    throws java.lang.Exception
Throws:
java.lang.Exception

get_bytes_read

int get_bytes_read()

set_content_length

void set_content_length(int _content_length)

get_content_length

int get_content_length()

set_URLname

void set_URLname(java.lang.String _URLName)

get_URLname

java.lang.String get_URLname()

updateDisplay

void updateDisplay()

force_repaint

void force_repaint(int i)

repaint

void repaint()