Ignore:
Timestamp:
May 3, 2010, 7:12:46 PM (14 years ago)
Author:
tobias
Message:

configurationView moved to new DataTree class.
implemented selectOneMenu on DataTree

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/BeanUtil.java

    r867 r868  
    5858        public static boolean getRequired(String type, String key) {
    5959                String s = getFieldProperty(type, key, 2);
     60                if (s == null) return false;
    6061                if (s.equals("true"))
    6162                        return true;
     
    104105                key = key.replaceAll(" ", "");
    105106                String result[] = getProperties((daemon + "." + type + "." + key));
     107                if (result[0] == null) return null;
    106108                if (i == 0) {
    107109                        if (result[1].equals("boolean")) {
Note: See TracChangeset for help on using the changeset viewer.