Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
final Action startAction = new EJEAction(JUnitPlugin.class, "junit.start"){
@Override
public void actionPerformed (ActionEvent act)
{
junitStartButtonAction = new JUnitStartButtonAction();
}
...
JButton startButton = new JButton(startAction);
};
junit.start.name=
junit.start.shortdescription=Test ausführen
junit.start.smallicon=run_junit24.png
final Action startAction = new EJEAction(JUnitPlugin.class, "junit.start"){
@Override
public void actionPerformed (ActionEvent act)
{
new Thread(){
public void run(){
junitStartButtonAction = new JUnitStartButtonAction();
}
}.start();
}
...
JButton startButton = new JButton(startAction);
};