Sign in
eclipse
/
efxclipse
/
org.eclipse.efxclipse
/
1eb6bff2a03e1f3aaa4ca2a17db671ddaa2d42e5
/
.
/
testcases
/
sample.splash.app
/
src
/
sample
/
splash
/
app
/
RestartHandler.java
blob: 915f649b4609af76e13a10f63141e130a3e43923 [
file
] [
log
] [
blame
]
package
sample
.
splash
.
app
;
import
org
.
eclipse
.
e4
.
core
.
di
.
annotations
.
Execute
;
import
org
.
eclipse
.
fx
.
ui
.
services
.
restart
.
RestartService
;
public
class
RestartHandler
{
@Execute
public
void
restart
(
RestartService
service
)
{
service
.
restart
(
false
);
}
}