/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | CMRFieldInfo.java | 49 * Note: the "field" variable is only available at runtime. 55 public transient Field field; field in class:CMRFieldInfo 59 // foreign key fields corresponding to this CMR field
|
H A D | FieldDescriptor.java | 46 * I represent a field on an ejb. 47 * Either an actual field (e.g. for EJB1.1 CMP) 48 * or a virtual field (e.g. for EJb2.0 CMP) 56 * Constructrs an empty field descriptor 62 * Constructrs a field descriptor with the given name. 69 * Constructrs a field descriptor with the given name and description. 76 * Constructs a field descriptor from the supplied java.lang.reflect.Field object. 79 public FieldDescriptor(Field field) { argument 80 this(field.getName(), "no description"); 83 /** Equality iff the other objects is a field descripto [all...] |
H A D | PersistentFieldInfo.java | 49 * Note: the "field" variable is only available at runtime. 59 field = other.field; 66 public transient Field field; field in class:PersistentFieldInfo 71 // these two fields are the corresponding pkey field and related object,
|
H A D | InjectionTarget.java | 51 * of the injected target, and field/method information used for injection. 64 private transient Field field=null; field in class:InjectionTarget 87 * of the injected field. This value is set on the descriptor 89 * field/method name during validation. 113 return field; 115 public void setField(Field field) { argument 116 this.field = field;
|
H A D | PersistenceDescriptor.java | 70 // true if primkey-field is set or for container-generated pk field 73 // false for beans with no primkey-field and pk class = Object 117 public String getCMRFieldReturnType(String field) { argument 120 if( !field.trim().equals("") ) { 122 String methodName = "get" + field.substring(0,1).toUpperCase() 123 + field.substring(1); 351 * Return the CMRFieldInfo object for the given CMR field 360 throw new DeploymentException("CMRFieldInfo not found for field "+fieldName); 424 "No local interface for target bean of CMR field"); 500 addCMPField(String field) argument 509 removeCMPField(String field) argument 532 isCMPField(String field) argument 597 isPkeyField(String field) argument 1027 getTypeFor(String field) argument 1032 getCMPFieldType(String field) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/ |
H A D | FeatureInfo.java | 101 * The field information for this feature. 125 * <p>Add a new field to the fields associated with the 128 * @param field The field to be added 130 public void addField(FieldInfo field) { argument 131 fields.add(field);
|
H A D | ManagedBean.java | 285 * <p>Add a new field to the fields associated with the 288 * @param field The field to be added 290 public void addField(FieldInfo field) { argument 291 fields.add(field); 503 FieldInfo field = fields.next(); 504 descriptor.setField(field.getName(), field.getValue());
|
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/jdo/ |
H A D | FieldElementHolder.java | 58 /** Add the supplied field to the collection of fields maintained by this 60 * @param field the field to be added 63 public void addField (PersistenceFieldElement field) argument 74 /** Remove the supplied field from the collection of fields maintained by 76 * @param field the field to be removed 79 public void removeField (PersistenceFieldElement field) argument 104 /** Returns the field with the supplied name from the collection of fields 107 * @return the field wit 115 containsField(PersistenceFieldElement field) argument [all...] |
H A D | FieldGroupElement.java | 78 /** @return implemetation factory for this field group 85 /** Add the supplied field to the collection of fields maintained by this 87 * @param field the field to be added 90 public void addField (PersistenceFieldElement field) argument 93 addFields(new PersistenceFieldElement[]{field}); 107 /** Remove the supplied field from the collection of fields maintained by 109 * @param field the field to be removed 112 public void removeField (PersistenceFieldElement field) argument 163 containsField(PersistenceFieldElement field) argument [all...] |
H A D | PersistenceClassElement.java | 57 1. throw ModelException on add duplicate field or concurrency group (will 231 /** Add the supplied field to the collection of fields maintained by this 233 * @param field the field to be added 236 public void addField (PersistenceFieldElement field) argument 239 addFields(new PersistenceFieldElement[]{field}); 253 /** Remove the supplied field from the collection of fields maintained by 255 * @param field the field to be removed 258 public void removeField (PersistenceFieldElement field) argument 324 containsField(PersistenceFieldElement field) argument [all...] |
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/ |
H A D | EjbUtils.java | 66 * The primary key class field must be a subset of the names of the 69 * @param field the field to be checked for containment within the names of the 73 * @return <code>boolean</code> true if field is subset of CMP fields, false otherwise 75 public static boolean isFieldSubsetOfCMP(Field field, Set CMPFields) { argument 76 if (CMPFields.contains(new FieldDescriptor(field))) { 86 * field names of the entity bean class that comprise the key. 89 * The primary key class field must correspond to the field names of the 92 * @param field th 97 isPKFieldMatchingBeanFields(Field field, Vector beanFields) argument [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/ |
H A D | FieldInfo.java | 64 * The name of the field. 74 * The reflection representation of the field. 76 protected Field field; field in class:FieldInfo 93 public FieldInfo (Field field, ClassType classType) argument 95 this.name = field.getName(); 97 this.field = field; 102 * Checks whether this field is defined as persistent field. 103 * @return true if the field i [all...] |
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/ |
H A D | BCELClassFile.java | 273 public void visitField(Field field) { argument 274 logger.entering(myClassName, "visitField", field); // NOI18N 275 String signature = field.getSignature(); 277 //for BCEL 5.1, use field.getType().getSignature() if the above does
|
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/mapping/ |
H A D | CacheMapping.java | 47 * construct the key into the cache, and a set of constraints on the field 59 // a field to force caching engine to refresh entry 107 /** set the timeout field 108 * @param field default timeout of the cacheable entries 110 public void setTimeoutField(Field field) { argument 111 this.timeoutField = field; 114 /** set the refresh field 115 * @param field Boolean field for controlling when a refresh is needed 117 public void setRefreshField(Field field) { argument 156 addKeyField(Field field) argument 171 addConstraintField(ConstraintField field) argument [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/model/ |
H A D | TableDesc.java | 80 /** Version field used for version consistency */ 175 void setVersionField(LocalFieldDesc field) { argument 176 versionField = field; 180 * Returns the field representing the version column for this 184 * @return Version field.
|
H A D | FieldDesc.java | 76 /** This field is used for concurrency check */ 79 /** Update before image when this field is updated. This property is always set */ 82 /** This field is read only */ 85 /** Record updates on this field to DB. This property is always set for primitive fields. */ 88 /** Relationship updates are processed from the side containing this field. */ 92 * This field is the primary tracked field. 95 * One of them is made the primary tracked field as per precedence rules 96 * on the field types. This field i 152 private Field field; field in class:FieldDesc [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/constraint/ |
H A D | Constraint.java | 86 * Adds a field to the constraint stack. 89 * named field, optionally including an operation descriptor 93 * The name parameter specifies the name of the field to be 98 * what is to be done with the field named by the name parameter. 105 * Adds a field to the constraint stack. 108 * field descriptor and adds it to the constraint stack. 111 * The Desc parameter is the field descriptor to be 119 * Adds a field to the constraint stack. 122 * field descriptor and adds it to the constraint stack. 125 * The Desc parameter is the field descripto 174 addConstraintFieldSubQuery(String field, ActionDesc rd) argument [all...] |
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/ |
H A D | ObjectAnalyzer.java | 428 Field field; field in class:FieldInfo 437 field = f; 488 s.append(StringUtils.padRight(fi.field.getName(), fieldNameLength)); 518 int flen = fi.field.getName().length();
|
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/ |
H A D | MappingClassElement.java | 120 // public boolean mapFieldToTable (MappingFieldElement field, 253 //======================= field handling =========================== 261 /** Scans through this mapping class looking for a field whose 263 * @param name name of the field to find. 264 * @return the mapping field whose name matches the name parameter 268 /** Adds a field to the list of fields in this mapping class. 269 * @param field field element to be added 272 public void addField (MappingFieldElement field) throws ModelException; argument 274 /** Removes a field fro 278 removeField(MappingFieldElement field) argument [all...] |
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/ |
H A D | FieldAction.java | 81 * to a single field of a class. 87 /* The field which we contain information about */ 100 /* true if this persistent field is primary key. */ 101 //@olsen: added field 104 /* true if this persistent field's value is a second class object. */ 105 //@olsen: added field 108 /* true if this is a non-static, non-final, non-transient field 114 * the type of the field. */ 120 /* Information about the type of the field. Used to determine how 124 /* The persistent field inde 134 FieldAction(ClassAction ca, ClassField field, Environment env) argument [all...] |
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/impl/ |
H A D | MappingClassElementImpl.java | 656 // if it is a version field, add back an unmapped 657 // field which retains the version flag setting 692 /** Scans through this mapping class looking for a field whose 694 * @param name name of the field to find. 695 * @return the mapping field whose name matches the name parameter 703 MappingFieldElement field = 706 if (name.equals(field.getName())) 707 return field; 713 /** Adds a field to the list of fields in this mapping class. 714 * @param field fiel 717 addField(MappingFieldElement field) argument 740 removeField(MappingFieldElement field) argument [all...] |
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/ |
H A D | RetrieveDescImpl.java | 162 * navigational field. 187 * returned in a persistent object. If the field requested is a 191 * If the parameter <code>projection</code> is true, the field 194 * @param name The name of the field to return. 211 // For local fields, set the property on the field constraint. 284 * Add a field specified by <code>name</code> to the list of fields to be prefetched. 285 * @param name Name of the field to be prefetched. 286 * @param foreignConstraint This parameter is null if the field is a local field. 287 * If the field i 428 addParameterConstraint(LocalFieldDesc field, int index) argument [all...] |
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | ClassFile.java | 215 * Add a field to the list of the fields which the class contains 217 public void addField (ClassField field) { argument 218 classFields.addElement(field); 222 * Add a field to the list of the fields which the class contains, 225 public void addField(ClassField field, int index) { argument 226 classFields.insertElementAt(field, index); 258 * Look for a field with the specified name 262 ClassField field = (ClassField) e.nextElement(); 263 if (field.name().asString().equals(fieldName)) 264 return field; [all...] |
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/meta/ |
H A D | JDOMetaDataProperties.java | 113 * specified in the properties: To find the field 114 * <code>test.Test1#field</code>, the keys <code>test.Test1</code> and 257 * Gets the information about the specified field. 260 * @param fieldname The name of the field of the class. 262 * @return The information about the field or <code>null</code> if 488 if (name.startsWith (clazz.getName () + FIELD_DELIMITER)) //field found 501 * Parses the attribute-string of a field. 505 * @param clazz The class to field belongs to. 530 JDOField field = new JDOField (fieldname); 536 field 1280 addField(JDOField field) argument [all...] |
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/util/ |
H A D | ModelValidator.java | 70 /** This field holds the model object used for validation */ 73 /** This field holds the name of the class being validated */ 76 /** This field holds the class loader used to load class 233 PersistenceFieldElement field = fields[i]; 235 list.add(createFieldCardinalityComponent(field)); 236 list.add(createFieldMappingComponent(field)); 237 list.add(createFieldBlobMappingComponent(field)); 238 list.addAll(getRelatedClassValidationList(field)); 327 * representing the field and relationship tests to be performed. 329 * field an 417 getRelatedClassValidationList( PersistenceFieldElement field) argument 610 createFieldExistenceComponent(Object field) argument 620 createFieldPersistenceComponent( final PersistenceFieldElement field) argument 646 createFieldConsistencyComponent( final PersistenceFieldElement field) argument 686 createFieldConsistencyComponent( final MappingFieldElement field) argument 717 createFieldPersistenceTypeComponent( final PersistenceFieldElement field) argument 754 createFieldCardinalityComponent( final PersistenceFieldElement field) argument 909 createFieldMappingComponent( final PersistenceFieldElement field) argument 947 createFieldBlobMappingComponent( final PersistenceFieldElement field) argument 1052 createCollectionClassComponent( final RelationshipElement field) argument 1087 createElementClassComponent( final RelationshipElement field) argument 1320 createInverseFieldComponent( final RelationshipElement field) argument 1354 createRelatedClassMatchesComponent( final RelationshipElement field) argument 1396 createInverseMappingComponent( final RelationshipElement field) argument 1499 createFieldDefaultFetchGroupComponent( final MappingFieldElement field) argument 1980 createColumnOverlapComponent( final MappingFieldElement field) argument 2566 getOffendingObject(Object field) argument 2582 getKey(String keyBase, Object field) argument 2597 getArguments(String className, Object field) argument 2720 isRelationship(Object field) argument 2726 shouldBeRelationship(PersistenceFieldElement field) argument 2734 isLegalRelationship(PersistenceFieldElement field) argument 2746 getRelatedClass(PersistenceFieldElement field) argument 2786 isJoin(MappingRelationshipElement field) argument [all...] |