Ignore:
Timestamp:
02/20/12 11:41:48 (12 years ago)
Author:
sherbold
Message:
  • minor changes to the SWT GUI
Location:
trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/MainWindow.java

    r247 r387  
    7878        protected void createContents() { 
    7979                shlEventbenchConsole = new Shell(); 
    80                 shlEventbenchConsole.setSize(500, 300); 
     80                shlEventbenchConsole.setSize(800, 600); 
    8181                shlEventbenchConsole.setText("EventBench Console"); 
    8282                shlEventbenchConsole.setLayout(new GridLayout(1, false)); 
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swt/ModelPropertiesDialog.java

    r381 r387  
    6969                List list = new List(grpEvents, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL); 
    7070                for( String symbol : process.getSymbolStrings() ) { 
    71                         list.add(symbol); 
     71                        if( symbol==null ) { 
     72                                list.add("null"); 
     73                        } else { 
     74                                list.add(symbol); 
     75                        } 
    7276                } 
    7377                 
Note: See TracChangeset for help on using the changeset viewer.