You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package siprp.ui;
|
|
|
|
import com.evolute.swing.frame.EvoFrame;
|
|
|
|
public class SIPRPFrame extends EvoFrame
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public SIPRPFrame()
|
|
{
|
|
this( "" );
|
|
}
|
|
|
|
public SIPRPFrame( String title )
|
|
{
|
|
super( title );
|
|
centerLater();
|
|
}
|
|
|
|
}
|