Searched defs:f2 (Results 1 - 4 of 4) sorted by relevance
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/ |
H A D | FilePath.java | 156 public static boolean canonicalNamesEqual(String f1, String f2) { argument 162 equal = f1.equalsIgnoreCase(f2); 165 equal = f1.equals(f2);
|
/glassfish-3.1.2/admin/backup/src/main/java/com/sun/enterprise/backup/ |
H A D | ListManager.java | 257 private int compareFiles(String f1, String f2) { argument 263 if (f2 == null) 264 f2 = strings.get("backup-list.unavailable"); 273 f2 = f2.substring(f2.lastIndexOf("_v")+2, f2.length() - 4); 275 f2Num = Integer.parseInt(f2);
|
/glassfish-3.1.2/admingui/updatecenter/src/main/java/org/glassfish/uc/admingui/ |
H A D | UpdateCenterHandlers.java | 346 * Returns true if f1 supersedes f2 348 private static boolean supersedes(Fmri f1, Fmri f2, String pAuth) { argument 350 boolean f2Preferred = f2.getAuthority().equals(pAuth); 352 // If f1 is from the preferred authority and f2 is not, then 358 // If f2 is from the preferred authority and f1 is not, then 365 return f1.isSuccessor(f2);
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/model/ |
H A D | FieldDesc.java | 740 * If f1 and f2 are both primitive fields, we do an exact match. 741 * If f1 is primitve and f2 is a relationship field, we do an at-least-one match. 742 * If both f1 and f2 are relationship fields, we do an exact match. 745 static boolean compareColumns(FieldDesc f1, FieldDesc f2) { argument 757 if (f2 instanceof LocalFieldDesc) { 758 columnList2 = ((LocalFieldDesc) f2).columnDescs; 767 columnList2 = ((ForeignFieldDesc) f2).localColumns; 770 if (f2 instanceof LocalFieldDesc) { 774 ForeignFieldDesc ff2 = (ForeignFieldDesc) f2;
|
Completed in 122 milliseconds