Searched refs:fields (Results 1 - 25 of 266) sorted by relevance

1234567891011

/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/model/
H A DKeyDesc.java24 * If applicable, add the following below the License Header, with the fields
55 * key fields and key columns.
60 private ArrayList fields; field in class:KeyDesc
74 if (fields == null)
75 fields = new ArrayList();
77 fields.add(f);
97 /** Return all key fields.
101 return fields;
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/jdo/
H A DFieldGroupElement.java24 * If applicable, add the following below the License Header, with the fields
85 /** Add the supplied field to the collection of fields maintained by this
96 /** Add the supplied fields to the collection of fields maintained by this
98 * @param fields the array of fields to be added
101 public void addFields(PersistenceFieldElement[] fields) argument
104 getFieldGroupImpl().changeFields(fields, Impl.ADD);
107 /** Remove the supplied field from the collection of fields maintained by
118 /** Removed the supplied fields fro
123 removeFields(PersistenceFieldElement[] fields) argument
143 setFields(PersistenceFieldElement[] fields) argument
178 changeFields(PersistenceFieldElement[] fields, int action) argument
[all...]
H A DFieldElementHolder.java24 * If applicable, add the following below the License Header, with the fields
58 /** Add the supplied field to the collection of fields maintained by this
66 /** Add the supplied fields to the collection of fields maintained by this
68 * @param fields the array of fields to be added
71 public void addFields (PersistenceFieldElement[] fields) argument
74 /** Remove the supplied field from the collection of fields maintained by
82 /** Removed the supplied fields from the collection of fields maintaine
87 removeFields(PersistenceFieldElement[] fields) argument
101 setFields(PersistenceFieldElement[] fields) argument
[all...]
H A DPersistenceClassElement.java24 * If applicable, add the following below the License Header, with the fields
231 /** Add the supplied field to the collection of fields maintained by this
242 /** Add the supplied fields to the collection of fields maintained by this
244 * @param fields the array of fields to be added
247 public void addFields(PersistenceFieldElement[] fields) argument
250 getClassImpl().changeFields(fields, Impl.ADD);
253 /** Remove the supplied field from the collection of fields maintained by
264 /** Removed the supplied fields fro
269 removeFields(PersistenceFieldElement[] fields) argument
303 setFields(PersistenceFieldElement[] fields) argument
537 changeFields(PersistenceFieldElement[] fields, int action) argument
[all...]
H A DPersistenceFieldElement.java24 * If applicable, add the following below the License Header, with the fields
76 * this class for transient fields.
236 PersistenceFieldElement[] fields = getDeclaringClass().getFields();
237 int i, count = ((fields != null) ? fields.length : 0);
240 if (equals(fields[i]))
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/concurrency/
H A DConcurrencyOptVerify.java24 * If applicable, add the following below the License Header, with the fields
63 * Find all the local fields that have been updated
67 ArrayList fields;
73 fields = plan.getConfig().fields;
75 fields = plan.getConfig().hiddenFields;
78 if (fields == null) {
82 for (int j = 0; j < fields.size(); j++) {
83 FieldDesc f = (FieldDesc) fields.get(j);
88 // In the case of a deleted instance with no modified fields
[all...]
H A DConcurrencyCheckDirty.java24 * If applicable, add the following below the License Header, with the fields
83 ArrayList fields = plan.getConfig().fields;
89 fields = plan.getConfig().fields;
91 fields = plan.getConfig().hiddenFields;
94 if (fields == null) {
98 for (int j = 0; j < fields.size(); j++) {
99 FieldDesc f = (FieldDesc) fields.get(j);
105 // Also, skip all fields tha
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DFeatureInfo.java24 * If applicable, add the following below the License Header, with the fields
82 protected List<FieldInfo> fields = new ArrayList<FieldInfo>(); field in class:FeatureInfo
104 return (fields);
125 * <p>Add a new field to the fields associated with the
131 fields.add(field);
139 * <p>Add the name/value fields that have been stored into the
142 * @param descriptor The <code>Descriptor</code> to add fields to
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/jdo/impl/
H A DFieldGroupElementImpl.java24 * If applicable, add the following below the License Header, with the fields
91 /** Get all fields.
92 * @return the fields
100 /** Change the set of fields.
101 * @param fields the new fields
105 public void changeFields (PersistenceFieldElement[] fields, int action) argument
108 _fields.changeElements(fields, action);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/
H A DExtendedAccessLogValve.java24 * If applicable, add the following below the License Header, with the fields
93 * The following fields are supported:
312 * Holder for all of the fields to log after the pattern is decoded.
1202 * @param fields The pattern to decode
1203 * @return null on error. Otherwise array of decoded fields
1205 public FieldInfo[] decodePattern(String fields) { argument
1208 log.fine("decodePattern, fields=" + fields);
1214 for (;i<fields.length() && Character.isWhitespace(fields
1335 decode(String fields, int i, FieldInfo fieldInfo, short type) argument
1390 decodeAppSpecific(String fields, int i, FieldInfo fieldInfo) argument
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/beanclass/
H A DEjbClassStaticFieldsFinal.java24 * If applicable, add the following below the License Header, with the fields
52 * Enterprise Java Bean class static final fields test.
53 * An enterprise Bean must not use read/write static fields. Using read-only
54 * static fields is allowed. Therefore, it is recommended that all static
55 * fields in the enterprise bean class be declared as final.
66 * Enterprise Java Bean class static final fields test.
67 * An enterprise Bean must not use read/write static fields. Using read-only
68 * static fields is allowed. Therefore, it is recommended that all static
69 * fields in the enterprise bean class be declared as final.
84 // it is recommended that all static fields i
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/session/
H A DTransientFieldsSerialization.java24 * If applicable, add the following below the License Header, with the fields
55 * The Bean Provider must assume that the content of transient fields may be
60 * UserTransaction interface. The restrictions on the use of transient fields
69 * The Bean Provider must assume that the content of transient fields may be
74 * UserTransaction interface. The restrictions on the use of transient fields
97 Field [] fields = c.getDeclaredFields();
98 for (int i = 0; i < fields.length; i++) {
99 int modifiers = fields[i].getModifiers();
103 Class fc = fields[i].getType();
124 "Session bean fields shoul
[all...]
H A DBeanFieldsTransient.java24 * If applicable, add the following below the License Header, with the fields
55 * The Bean Provider should not declare the session bean fields in the session
68 * The Bean Provider should not declare the session bean fields in the session
89 // fields should not be defined in the session bean class as transient.
90 Field [] fields = c.getDeclaredFields();
91 for (int i = 0; i < fields.length; i++) {
92 int modifiers = fields[i].getModifiers();
99 "Warning: Field [ {0} ] defined within session bean class [ {1} ] is defined as transient. Session bean fields should not be defined in the session bean class as transient.",
100 new Object[] {fields[i].getName(),((EjbSessionDescriptor)descriptor).getEjbClassName()}));
115 "Cannot access fields o
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/
H A DLogQueryEntryImpl.java24 * If applicable, add the following below the License Header, with the fields
108 throw new IllegalArgumentException( "wrong number of fields: " + values.length);
124 final Object[] fields = new Object[ NUM_FIELDS ];
126 fields[ RECORD_NUMBER_INDEX ] = mRecordNumber;
127 fields[ DATE_INDEX ] = mDate;
128 fields[ LEVEL_INDEX ] = mLevel;
129 fields[ PRODUCT_NAME_INDEX ] = mProductName;
130 fields[ MESSAGE_ID_INDEX ] = mMessageID;
131 fields[ MODULE_INDEX ] = mModule;
132 fields[ MESSAGE_INDE
[all...]
H A DLogQueryResultImpl.java24 * If applicable, add the following below the License Header, with the fields
120 final Object[] fields = entry.getFields();
121 for( final Object o : fields )
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DObjectAnalyzer.java24 * If applicable, add the following below the License Header, with the fields
179 Field[] fields = cl.getDeclaredFields();
180 setAccessible(fields);
182 for (int i = 0; i < fields.length; i++)
184 Field f = fields[i];
281 Field[] fields = null;
285 fields = cl.getDeclaredFields();
292 if(fields == null)
295 setAccessible(fields);
297 for(int i = 0; i < fields
330 setAccessible(Field[] fields) argument
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/
H A DFieldNameElementPublic.java24 * If applicable, add the following below the License Header, with the fields
78 // this test apply only to 1.x cmp beans, in 2.x fields are virtual fields only
91 // specify container managed fields in the persistent-fields
99 // check class to get all fields that actually exist
115 // reflecting all the accessible public fields of the class
117 Field fields[] = c.getFields();
120 for (int i=0; i < fields.length; i++) {
121 if (fieldName.equals(fields[
[all...]
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/ejb/entity/pkmultiplefield/
H A DPrimaryKeyClassFieldsMatchBeanFields.java24 * If applicable, add the following below the License Header, with the fields
55 * Enterprise Java Bean primary key maps to multiple fields in the Entity bean
59 * container-managed fields (i.e. the key is a compound key). In this case, the
60 * fields of the primary key class must be public, and their names must
67 * Enterprise Java Bean primary key maps to multiple fields in the Entity bean
71 * container-managed fields (i.e. the key is a compound key). In this case, the
72 * fields of the primary key class must be public, and their names must
84 // fields of the primary key class names must correspond to the
91 // do we have primekey that maps to single or multiple fields in entity
114 Field [] fields
[all...]
H A DPrimaryKeyClassFieldsCmp.java24 * If applicable, add the following below the License Header, with the fields
55 * Enterprise Java Bean primary key class fields subset of the names of
56 * the container-managed fields test.
58 * The names of the fields in the primary key class must be a subset of the
59 * names of the container-managed fields. (This allows the container to
60 * extract the primary key fields from an instance's container-managed fields,
67 * Enterprise Java Bean primary key class fields subset of the names of
68 * the container-managed fields test.
70 * The names of the fields i
[all...]
H A DPrimaryKeyClassFieldsPublic.java24 * If applicable, add the following below the License Header, with the fields
53 * Enterprise Java Bean primary key class public fields test.
54 * The primary key class must declare all fields within the class as public.
60 * Enterprise Java Bean primary key class public fields test.
61 * The primary key class must declare all fields within the class as public.
76 // do we have primekey that maps to single or multiple fields in entity // bean class? if primekey-field exist, then primekey maps to single
101 Field [] fields = c.getDeclaredFields();
102 for (int i = 0; i < fields.length; i++) {
104 int modifiers = fields[i].getModifiers();
122 new Object[] {fields[
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/util/
H A DDumpMapping.java24 * If applicable, add the following below the License Header, with the fields
157 public static void printPersistenceFieldElements(int tabs, PersistenceFieldElement[] fields) argument
159 if ((fields != null) && (fields.length > 0))
161 println(tabs, "--> fields "); //NOI18N
162 for (int i = 0; i < fields.length; i++)
164 PersistenceFieldElement pfe = fields[i];
187 println(tabs, "<-- fields "); //NOI18N
263 public static void printMappingFieldElements(int tabs, ArrayList fields) argument
265 final int count = ((fields !
[all...]
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/impl/
H A DComponentDefinition.java24 * If applicable, add the following below the License Header, with the fields
68 final private List<Field> fields = new ArrayList<Field>(); field in class:ComponentDefinition
80 return fields.toArray(new Field[fields.size()]);
125 fields.add(f);
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/meta/
H A DJDOMetaDataProperties.java24 * If applicable, add the following below the License Header, with the fields
77 * a fields is separated by a classname with a hash mark ('#')
112 * in order to find fields of a class, a line for the class has to be
141 //attribute names for classes and fields
149 //values of the access attribute of classes and fields.
155 //values of the jdo attribute of classes and fields.
160 //values of the annotation type attribute of fields.
247 parseJDOFields (clazz); //parse all fields
472 * Parses all fields of a given class.
484 //search for fields o
1117 private final List fields = new ArrayList (); field in class:JDOMetaDataProperties.JDOClass
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/
H A DClassType.java24 * If applicable, add the following below the License Header, with the fields
167 * Returns an array of fieldInfos for all declared fields.
173 //Field[] fields = clazz.getDeclaredFields();
177 Field[] fields = (Field[]) AccessController.doPrivileged(new PrivilegedAction() {
184 for (int i = 0; i < fields.length; i++)
186 String fieldName = fields[i].getName();
189 fieldInfos.put(fieldName, new FieldInfo(fields[i], this));
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/
H A DRetrieveDescImpl.java24 * If applicable, add the following below the License Header, with the fields
120 /** Indicates, that fetch group fields should be added. */
124 * Indicates, that only key fields should be added. When this option is set,
131 * Indicates, that even if relationship fields are in DFG, they should not
132 * be prefetched. The runtime will attempt to fetch relationhip fields only
143 private ArrayList fields; field in class:RetrieveDescImpl
181 fields = new ArrayList();
186 * The addResult method is used to specify which fields should be
189 * provided which describes which fields of the referenced object
196 * RetrieveDesc describing fields an
415 addParameterConstraints(LocalFieldDesc[] fields, int startIndex) argument
[all...]

Completed in 115 milliseconds

1234567891011