mirror of
https://github.com/webmin/webmin.git
synced 2025-07-29 11:50:54 +00:00
Test checkin of some modules
This commit is contained in:
24
file/StaticTextField.java
Normal file
24
file/StaticTextField.java
Normal file
@ -0,0 +1,24 @@
|
||||
import java.awt.*;
|
||||
|
||||
// StaticTextField
|
||||
// A text field that is set to be non-editable by default
|
||||
class StaticTextField extends TextField
|
||||
{
|
||||
StaticTextField()
|
||||
{
|
||||
super();
|
||||
setEditable(false);
|
||||
}
|
||||
|
||||
StaticTextField(String s)
|
||||
{
|
||||
super(s);
|
||||
setEditable(false);
|
||||
}
|
||||
|
||||
StaticTextField(String s, int i)
|
||||
{
|
||||
super(s,i);
|
||||
setEditable(false);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user