KernelOptionsDefault is more or less a plain java bean:
public class KernelOptionsDefault
| implements KernelOptions, KernelConstants {
|
| public static String _ARVERSION_ = "_AV_ KernelOptionsDefault 3103 029470 pflaum 02.05.2005-18:53 _AV_";
|
| protected int processType = ProcessManagementConstants.PROCESSTYPE_JAVACLIENT;
| protected boolean simulateApplication = false;
| protected boolean mdi = false;
| protected boolean exitVMAfterStop = true;
| protected boolean use2Tier = false; // this was line 121 before comment stripping
| protected boolean skipIntro = false;
| protected char purpose = PURPOSE_PRODUCTIVE;
| protected AppConfigurationEntry[] entries = null;
| protected WProject project = GUIProject.getInstance();
| protected String loginContextName = null;
| protected GraphicConfiguration graphicConfiguration = null;
|
| public AppConfigurationEntry[] getEntries() {
| return entries;
| }
|
| public void setEntries( AppConfigurationEntry[] newEntries ) {
| entries = newEntries;
| }
|
| public GraphicConfiguration getGraphicConfiguration() {
| return graphicConfiguration;
| }
|
| public boolean isExitVMAfterStop() {
| return exitVMAfterStop;
| }
|
| // ...
| }
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877169#3877169
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877169
|