Searched defs:pairs (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DCapabilities.java60 public Capabilities(final Object[] pairs) { argument
62 for (int i = 0; i < pairs.length; i += 2) {
63 add((String) pairs[i], pairs[i + 1]);
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/
H A DMappingReferenceKeyElement.java58 * (MappingRelationshipElement has its own set of pairs). It can be thought
59 * of as a "fake foreign key" meaning it designates the column pairs used to
61 * foreign key and may in fact contain identical pairs as the foreign key,
63 * set of pairs or may not exist at all. Although any set of pairs is legal,
64 * the user should be careful to define pairs which represent a logical
69 * a secondary table and set up the pairs which establish the connection
98 * @return the names of the column pairs in this referencing key
109 /** Remove some column pairs from the holder. This method can be used to
110 * remove pairs b
128 addColumnPairs(ColumnPairElement[] pairs) argument
142 removeColumnPairs(ColumnPairElement[] pairs) argument
150 setColumnPairs(ColumnPairElement[] pairs) argument
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/impl/
H A DMappingReferenceKeyElementImpl.java230 * @return the names of the column pairs in this referencing key
237 ArrayList pairs = new ArrayList();
240 pairs.add(locals.get(i) + ";" + foreigns.get(i)); // NOI18N
242 return pairs;
342 /** Remove some column pairs from the holder. This method can be used to
343 * remove pairs by name when they cannot be resolved to actual pairs.
344 * @param pairNames the relative names of the column pairs to remove
404 /** Add some new column pairs to the holder.
405 * @param pairs th
408 addColumnPairs(ColumnPairElement[] pairs) argument
453 removeColumnPairs(ColumnPairElement[] pairs) argument
475 setColumnPairs(ColumnPairElement[] pairs) argument
[all...]
/glassfish-3.1.2/persistence/cmp/ejb-mapping/src/main/java/com/sun/jdo/api/persistence/mapping/ejb/
H A DMappingFile.java817 final ColumnPair pairs[] = aRelation.getColumnPair();
820 pairs,
1031 * @param pairs ColumnPair information from sun-cmp-mappings.xml.
1047 private Collection convertToColumnPairElements(ColumnPair pairs[], argument
1059 for (int i = 0; null != pairs && i < pairs.length; i++) {
1060 ColumnPair pair = pairs[i];
1558 ColumnPair pairs[] = tableList[i].getColumnPair();
1560 if (null != pairs)
1561 len = pairs
[all...]

Completed in 1469 milliseconds