Examples of ExtInfo


Examples of pl.net.bluesoft.rnd.processtool.dict.mapping.metadata.entry.ExtInfo

          entryInfo.setDescriptionType(field.getType());
        }
        else {
          Ext ext = field.getAnnotation(Ext.class);
          if (ext != null) {
            ExtInfo extInfo = new ExtInfo();
            extInfo.setName(ext.name());
            extInfo.setProperty(field.getName());
            extInfo.setType(field.getType());
            Default def = field.getAnnotation(Default.class);
            if (def != null) {
              extInfo.setDefaultValue(def.value());
            }
            ComplexContent compl = field.getAnnotation(ComplexContent.class);
            if (compl != null) {
              extInfo.setElementClass(compl.elementClass());
              extInfo.setSeparator(compl.separator());
              extInfo.setDefaultNull(compl.defaultNull());
            }
            entryInfo.addExtInfo(extInfo);
          }
        }
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.