Examples of icon()


Examples of org.jeecgframework.core.annotation.config.AutoMenu.icon()

            function.setFunctionLevel(Short.valueOf(autoMenu.level()));
            function.setFunctionOrder(Integer.toString(autoMenu.order()));
            function.setFunctionUrl(autoMenu.url());
            function.setTSFunction(null);
           
            String iconId = autoMenu.icon();
            if (StringUtil.isNotEmpty(iconId)) {
              Object obj = this.get(TSIcon.class, iconId);
              if(obj!=null){
                function.setTSIcon((TSIcon)obj);
              }else{
View Full Code Here

Examples of org.jeecgframework.core.annotation.config.AutoMenuOperation.icon()

                  operation.setOperationcode(code);
                  operation.setOperationicon(null);
                  operation.setStatus(Short.parseShort(Integer.toString(autoMenuOperation.status())));
                  operation.setTSFunction(function);
                 
                  String iconId = autoMenuOperation.icon();
                  if (StringUtil.isNotEmpty(iconId)) {
                    TSIcon icon = new TSIcon();
                    icon.setId(iconId);
                    operation.setTSIcon(icon);
                  } else {
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.