Ignore:
Timestamp:
04/11/07 06:38:36 (17 years ago)
Author:
adrpo
Message:
  • mdt 0.7.0 changes
  • fixed some bugs
  • debugging
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.ui/src/org/modelica/mdt/ui/wizards/NewClassWizard.java

    r438 r491  
    178178           
    179179            classType = new Combo(composite, SWT.READ_ONLY);
    180             classType.setItems(new String [] {"model", "class", "connector",
    181                     "record", "block", "type", "function"});
     180            classType.setItems(new String [] {"model", "class", "connector", "record", "block", "type", "function", "package"});
    182181            classType.setVisibleItemCount(7);
    183182            UIPlugin.tag(classType, CLASS_TYPE_TAG);
     
    320319    {
    321320        return 
    322         (!(classType.equals("type")
    323                 || classType.equals("function")));
     321        (!(classType.equals("type") || classType.equals("function")));
    324322    }
    325323
     
    341339       
    342340        IRunnableWithProgress op = new IRunnableWithProgress() {
    343             public void run(IProgressMonitor monitor)
    344                                 throws InvocationTargetException
     341            public void run(IProgressMonitor monitor) throws InvocationTargetException
    345342             {
    346343                try
Note: See TracChangeset for help on using the changeset viewer.