Changeset 2612


Ignore:
Timestamp:
01/31/10 09:09:02 (2 years ago)
Author:
jvelde
Message:

Reverted changes that break XGAP. SoapApi? is now again correctly generated. Type fields in sql files only where appropriate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molgenis/3.3/src/org/molgenis/model/elements/Entity.java

    r2610 r2612  
    260260                        Vector<String> enumOptions = new Vector<String>(); 
    261261                        enumOptions.add(getName()); 
    262                         Field type_field = new Field(this, Field.Type.ENUM, "Type", "Type", true, false, true, null); 
     262                        Field type_field = new Field(this, Field.Type.ENUM, "type", "type", true, false, true, null); 
    263263                        type_field.setDescription("Subtypes of " + getName() + ". Have to be set to allow searching"); 
    264264                        type_field.setEnumOptions(enumOptions); 
     
    552552                        { 
    553553                                ifaceField.setEntity(this); 
    554                                         all_fields.put(ifaceField.getName().toLowerCase(), ifaceField); 
     554                                        all_fields.put(ifaceField.getName(), ifaceField); 
    555555                        } 
    556556                } 
     
    561561                        for (Field f : getAncestor().getAllFields()) 
    562562                        { 
    563                                 all_fields.put(f.getName().toLowerCase(), f); 
     563                                all_fields.put(f.getName(), f); 
    564564                        } 
    565565                } 
     
    568568                for (Field f : getFields()) 
    569569                { 
    570                         all_fields.put(f.getName().toLowerCase(), f); 
     570                        all_fields.put(f.getName(), f); 
    571571                } 
    572572                 
Note: See TracChangeset for help on using the changeset viewer.