Searched defs:f1 (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 DFilePath.java156 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 DListManager.java257 private int compareFiles(String f1, String f2) { argument
260 if (f1 == null)
261 f1 = strings.get("backup-list.unavailable");
266 f1 = f1.substring(f1.lastIndexOf("_v")+2, f1.length() - 4);
268 f1Num = Integer.parseInt(f1);
/glassfish-3.1.2/admingui/updatecenter/src/main/java/org/glassfish/uc/admingui/
H A DUpdateCenterHandlers.java346 * Returns true if f1 supersedes f2
348 private static boolean supersedes(Fmri f1, Fmri f2, String pAuth) { argument
349 boolean f1Preferred = f1.getAuthority().equals(pAuth);
352 // If f1 is from the preferred authority and f2 is not, then
353 // f1 supersedes.
358 // If f2 is from the preferred authority and f1 is not, then
359 // f1 does not supersede
364 // Otherwise compare versions. f1 supersedes if it is a successor
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 DFieldDesc.java740 * 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
754 if (f1 instanceof LocalFieldDesc) {
755 columnList1 = ((LocalFieldDesc) f1).columnDescs;
773 ForeignFieldDesc ff1 = (ForeignFieldDesc) f1;

Completed in 216 milliseconds