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

/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
H A DManagedBean.java24 * If applicable, add the following below the License Header, with the fields
99 protected List<FieldInfo> fields = new ArrayList<FieldInfo>(); field in class:ManagedBean
182 return (this.fields);
285 * <p>Add a new field to the fields associated with the
291 fields.add(field);
501 Iterator<FieldInfo> fields = getFields().iterator();
502 while (fields.hasNext()) {
503 FieldInfo field = fields.next();
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/jdo/
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 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 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...]
/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);
H A DPersistenceClassElementImpl.java24 * If applicable, add the following below the License Header, with the fields
248 /** Change the set of fields.
249 * @param fields the new fields
253 public void changeFields (PersistenceFieldElement[] fields, int action) argument
256 _fields.changeElements(fields, action);
259 /** Get all fields.
260 * @return the fields
/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;
H A DClassDesc.java24 * If applicable, add the following below the License Header, with the fields
92 /** Contains all local and foreign fields. */
93 public ArrayList fields; field in class:ClassDesc
95 /** Contains all hidden fields. */
98 /** Contains all relationship fields. */
101 /** Contains the fields used for version consistency validation. */
190 fields = new ArrayList();
293 // All fields should be initialized at this point. Now calculate
294 // the total number of hidden fields and fields
1528 getSortedFieldNumbers(List fields) argument
[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/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/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/
H A DJDOConcreteBean11Generator.java24 * If applicable, add the following below the License Header, with the fields
126 void generateLoadStoreMethods(PersistenceFieldElement[] fields) argument
128 int i, count = ((fields != null) ? fields.length : 0);
133 PersistenceFieldElement pfe = fields[i];
139 // Skip generated fields as they are not present in the bean class.
141 // There are no relationship fields in CMP1.1 beans.
H A DJDOConcreteBean20Generator.java24 * If applicable, add the following below the License Header, with the fields
177 private void generateGetSetMethods(PersistenceFieldElement[] fields) argument
179 int i, count = ((fields != null) ? fields.length : 0);
187 PersistenceFieldElement pfe = fields[i];
198 // Skip generated fields as they are not present in the bean class.
H A DJDOConcreteBeanGenerator.java24 * If applicable, add the following below the License Header, with the fields
118 // StringBuffer for loading nonDFG fields into read-only beans
373 // Initialize loadNonDFGBody for preloading non-DFG fields
423 // Add private transient fields:
429 // Add private static fields:
435 // Add private static final fields:
451 // The static fields holding the Query variables and their monitors
466 // Add read-only fields:
468 // private transient fields:
474 // private static fields
1002 getKeyFields(PersistenceFieldElement[] fields) argument
[all...]
/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/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/
H A DResultDesc.java24 * If applicable, add the following below the License Header, with the fields
80 private List fields; field in class:ResultDesc
82 /** List of field names corresponding to <code>fields</code>. */
88 /** Indicates whether this ResultDesc is prefetching relationship fields. */
93 * prefetched collection relationship fields. The ResultDesc is the
118 fields = new ArrayList();
138 fields.add(rfd);
144 fields.add(rs);
347 //We should only get here for getting values for hidden fields.
352 //For now retrieve value for hidden fields a
[all...]
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...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/impl/
H A DMappingClassElementImpl.java24 * If applicable, add the following below the License Header, with the fields
117 // possibly for sequence/identity fields later
633 if (found) // remove any fields mapped to that table
680 /** Returns the list of fields (MappingFieldElements) in this mapping
681 * class. This list includes both local and relationship fields.
682 * @return the mapping fields in this mapping class
713 /** Adds a field to the list of fields in this mapping class.
719 ArrayList fields = getFields();
721 if (!fields.contains(field))
726 fields
881 setFields(ArrayList fields) argument
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DClassFile.java24 * If applicable, add the following below the License Header, with the fields
94 /* A list of the fields which the class contains
207 * Return the list of the fields which the class contains
210 public Vector fields() { method in class:ClassFile
215 * Add a field to the list of the fields which the class contains
222 * Add a field to the list of the fields which the class contains,
261 for (Enumeration e = fields().elements(); e.hasMoreElements();) {
394 out.println("fields =");//NOI18N
571 FieldArraySorter(ClassField[] fields) { argument
572 theArray = fields;
[all...]
/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/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DModel.java24 * If applicable, add the following below the License Header, with the fields
817 * then convert its default fields and save it to the xml file.
844 /** Adds the default allowable persistent fields to the persistent class
856 /** Adds the allowable persistent fields from the supplied list
859 * @param fields a list of (short) field names
862 public void convertFields (String className, List fields) argument
868 Iterator iterator = fields.iterator();
870 // iterate the list of fields and create corresponding
1085 * fields.
1626 * field which has a type which is valid for key fields
[all...]
/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/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DSQLStateManager.java24 * If applicable, add the following below the License Header, with the fields
365 // This method expects index to be negative for hidden fields.
381 // This method expects index to be negative for hidden fields.
592 // Mark all the visible fields as present to prevent navigation and
593 // to allow us to create a before image that contains all the fields.
619 // Make sure all the fields have been marked dirty.
621 ArrayList fields = persistenceConfig.fields;
622 for (int i = 0; i < fields.size(); i++) {
623 FieldDesc f = (FieldDesc) fields
2093 copyValues(Object[] values, LocalFieldDesc[] fields, int startIndex) argument
[all...]
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc30/
H A Djdbc30.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/ConnectionEventListener.class ConnectionEventListener. ...
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 220 milliseconds