Package org.kie.workbench.common.services.refactoring.model.query

Examples of org.kie.workbench.common.services.refactoring.model.query.RefactoringStringPageRow


            }

            Iterator<Map.Entry<String, List<String>>> ruleFlorGroupsIterator = uniqueRuleFlowNames.entrySet().iterator();
            while(ruleFlorGroupsIterator.hasNext()) {
                Map.Entry<String, List<String>> entry = ruleFlorGroupsIterator.next();
                final RefactoringStringPageRow row = new RefactoringStringPageRow();
                row.setValue(entry.getKey() + "||" + entry.getValue().toString());
                result.add(row);
            }
            return result;
        }
View Full Code Here


            }

            Iterator<Map.Entry<String, String>> dataTypesIterator = uniqueDataTypeNames.entrySet().iterator();
            while(dataTypesIterator.hasNext()) {
                Map.Entry<String, String> entry = dataTypesIterator.next();
                final RefactoringStringPageRow row = new RefactoringStringPageRow();
                row.setValue(entry.getKey());
                result.add(row);
            }
            return result;
        }
View Full Code Here

TOP

Related Classes of org.kie.workbench.common.services.refactoring.model.query.RefactoringStringPageRow

Copyright © 2018 www.massapicom. 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.