Package nexj.core.meta.persistence.virtual

Examples of nexj.core.meta.persistence.virtual.VirtualSortKey


         List sortKeyList = ((VirtualMapping)query.getPersistenceMapping()).getSortKeys();

         loop:
            for (int nSortKey = 0, nSortKeyCount = sortKeyList.size(); nSortKey < nSortKeyCount; nSortKey++)
            {
               VirtualSortKey sortKey = (VirtualSortKey)sortKeyList.get(nSortKey);

               if (sortKey.isUnique())
               {
                  for (int i = 0, n = sortKey.getAttributeCount(); i < n; i++)
                  {
                     Attribute attr = sortKey.getAttribute(i);

                     if (attr == null || !attrSet.get(attr.getOrdinal()))
                     {
                        continue loop;
                     }
View Full Code Here

TOP

Related Classes of nexj.core.meta.persistence.virtual.VirtualSortKey

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.