1 18 19 package de.gulden.framework.amoda.generic.behaviour; 20 21 import java.lang.*; 22 import java.util.*; 23 24 30 public class CommandApplicationExit extends GenericCommand { 31 32 36 public static final String SYSTEM_ID = "system.command.exitApplication"; 37 38 39 43 public void perform() { 44 getApplication().stop(); 45 getApplication().destroy(); 46 ((de.gulden.framework.amoda.generic.core.GenericApplicationEnvironment)getApplication().getEnvironment()).exit(); 47 } 48 49 } | Popular Tags |