home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BUG 15
/
BUGCD1998_06.ISO
/
aplic
/
jbuilder
/
jsamples.z
/
ResolverExample.java
< prev
next >
Wrap
Text File
|
1997-07-03
|
357b
|
18 lines
package borland.samples.tutorial.dataset.resolverevents;
public class ResolverExample {
//Construct the application
public ResolverExample() {
ResolverFrame frame = new ResolverFrame();
frame.pack();
frame.setVisible(true);
}
//Main method
static public void main(String[] args) {
new ResolverExample();
}
}