git-svn-id: https://svn.coded.pt/svn/SIPRP@595 bb69d46d-e84e-40c8-a05a-06db0d633741

0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
Frederico Palma 18 years ago
parent b5b175d355
commit 2c083a4018

@ -22,5 +22,9 @@
<classpathentry kind="lib" path="SIPRPSoft/lib/avalon-framework-4.2.0.jar"/> <classpathentry kind="lib" path="SIPRPSoft/lib/avalon-framework-4.2.0.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/batik.jar"/> <classpathentry kind="lib" path="SIPRPSoft/lib/batik.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/fop.jar"/> <classpathentry kind="lib" path="SIPRPSoft/lib/fop.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/gnu-regexp-1.1.4.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/kafenio.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/kafenio-config.jar"/>
<classpathentry kind="lib" path="SIPRPSoft/lib/kafenio-icons.jar"/>
<classpathentry kind="output" path="build"/> <classpathentry kind="output" path="build"/>
</classpath> </classpath>

Binary file not shown.

@ -0,0 +1,33 @@
package siprp;
import java.awt.GridLayout;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JFrame;
import de.xeinfach.kafenio.KafenioPanel;
import de.xeinfach.kafenio.KafenioPanelConfiguration;
public class TestKafenio
{
public static void main( String args[] )
{
KafenioPanelConfiguration configuration = new KafenioPanelConfiguration();
configuration.setLanguage( "pt" );
KafenioPanel panel = new KafenioPanel( configuration );
JFrame frm = new JFrame();
frm.getContentPane().setLayout( new GridLayout( 1, 1 ) );
frm.getContentPane().add( panel );
frm.addWindowListener( new WindowAdapter(){
public void windowClosing( WindowEvent e )
{
System.exit( 0 );
}
} );
frm.setSize( 1024, 768 );
frm.setVisible( true );
}
}
Loading…
Cancel
Save