Searched refs:ff (Results 1 - 11 of 11) sorted by relevance

/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DOSGiFrameworkLauncher.java76 for (FrameworkFactory ff : frameworkFactories) {
77 framework = ff.newFramework(properties);
H A DBundleProvisioner.java740 for (FrameworkFactory ff : ServiceLoader.load(FrameworkFactory.class)) {
741 f = ff.newFramework(props);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/
H A DUpdateQueryPlan.java226 LocalFieldDesc ff = (LocalFieldDesc) foreignFields.get(i);
229 addConstraint(statement, lf, ff, ce, isBeforeImageRequired);
246 LocalFieldDesc ff,
252 statement.addConstraint(ce, lf, ff);
256 updateDesc.getBeforeValue(ff) : updateDesc.getAfterValue(ff);
260 Object value = batch ? ff : updateDesc.getAfterValue(ff);
244 addConstraint(UpdateStatement statement, LocalFieldDesc lf, LocalFieldDesc ff, ColumnElement ce, boolean isBeforeImageRequired) argument
H A DSelectQueryPlan.java454 ForeignFieldDesc ff = (ForeignFieldDesc) f;
456 store.getRetrieveDesc(ff.foreignConfig.getPersistenceCapableClass());
457 foreignFields.add(new ConstraintFieldName(ff.getName(), desc, true));
751 * @param ff The relationship field for the subquery
755 private void addCorrelatedExistsQuery(ForeignFieldDesc ff, int operation) { argument
757 Class classType = (ff.cardinalityUPB > 1) ? ff.getComponentType() : ff.getType();
760 SelectQueryPlan subqueryPlan = new CorrelatedExistSelectPlan(rd, store, ff, this);
923 * @param ff Relationshi
926 processNullConstraint(ForeignFieldDesc ff, ConstraintNode nextNode) argument
[all...]
H A DUpdateStatement.java275 LocalFieldDesc ff = (LocalFieldDesc) f.foreignFields.get(i);
282 addColumn(fc, ff.getValue(sm));
288 addConstraint(aff, ff.getValue(sm));
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/model/
H A DClassDesc.java438 ForeignFieldDesc ff = new ForeignFieldDesc(this);
440 addForeignField(ff);
442 ff.cardinalityLWB = fpcf.getLowerBound();
443 ff.cardinalityUPB = fpcf.getUpperBound();
444 ff.deleteAction = fpcf.getDeleteAction();
446 initializeColumnLists(ff, fmdf);
451 (ff.cardinalityUPB <= 1)) {
452 ff.cardinalityUPB = Integer.MAX_VALUE;
455 if (ff.cardinalityUPB > 1) {
457 ff
466 initializeColumnLists(ForeignFieldDesc ff, MappingRelationshipElementImpl fmdf) argument
[all...]
/glassfish-3.1.2/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/
H A DGFLauncherNativeHelper.java122 List<File> ff = profiler.getNativePath();
123 return GFLauncherUtils.fileListToPathString(ff);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DSQLStateManager.java637 ForeignFieldDesc ff = (ForeignFieldDesc) f;
641 logger.fine("sqlstore.sqlstatemanager.processforeign", ff.getName()); // NOI18N
644 if ((ff.sqlProperties & FieldDesc.PROP_PRIMARY_TRACKED_FIELD) > 0) {
645 trackedFields = ff.getTrackedFields();
661 "core.statemanager.conflictingvalues", ff.getName(), tf.getName())); // NOI18N
669 ff.setValue(this, obj);
678 processCollectionUpdates(ff, removed, added, null, true, false);
682 ff.setValue(this, null);
684 updateObjectField(ff, obj, true, false);
687 ff
1470 getCollectionValue(ForeignFieldDesc ff) argument
3839 getObjectById(ForeignFieldDesc ff, LocalFieldDesc updatedField, Object value, boolean forNavigation) argument
4251 replaceCollection(ForeignFieldDesc ff, Collection c) argument
[all...]
H A DSQLStoreManager.java290 ForeignFieldDesc ff = (ForeignFieldDesc) f;
291 return getRetrieveDesc(ff.foreignConfig.getPersistenceCapableClass());
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/
H A DGFFileHandler.java287 String ff = manager.getProperty(cname + ".flushFrequency");
288 if (ff != null)
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/io/
H A DFileUtils.java89 public static File[] listFiles(File f, FileFilter ff) { argument
91 File[] files = f.listFiles(ff);

Completed in 52 milliseconds