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

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DConstructor.java32 * a constructor declaration consists of a set of fields to be initialized.
61 public Constructor( String[] _fields ) { this.fields = _fields; }
64 public final String[] fields; field in class:Constructor
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DLegacyHookGetFields.java34 private Hashtable fields = null; field in class:LegacyHookGetFields
36 LegacyHookGetFields(Hashtable fields){ argument
37 this.fields = fields;
41 * Get the ObjectStreamClass that describes the fields in the stream.
53 return (!fields.containsKey(name));
63 else return ((Boolean)fields.get(name)).booleanValue();
67 * Get the value of the named char field from the persistent fields.
73 else return ((Character)fields.get(name)).charValue();
78 * Get the value of the named byte field from the persistent fields
[all...]
H A DLegacyHookPutFields.java39 private Hashtable fields = new Hashtable(); field in class:LegacyHookPutFields
45 fields.put(name, new Boolean(value));
49 * Put the value of the named char field into the persistent fields.
52 fields.put(name, new Character(value));
56 * Put the value of the named byte field into the persistent fields.
59 fields.put(name, new Byte(value));
63 * Put the value of the named short field into the persistent fields.
66 fields.put(name, new Short(value));
70 * Put the value of the named int field into the persistent fields.
73 fields
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSerialJavaObject.java45 * Static or transient fields cannot be serialized; an attempt to serialize
59 * Placeholder for all fields in the <code>JavaObject</code> being serialized.
61 private transient Field[] fields; field in class:SerialJavaObject
72 // if any static fields are found, an exception
84 // can only determine public fields (obviously). If
86 // the action of attempting to persist these fields
90 fields = c.getFields();
92 for (int i = 0; i < fields.length; i++ ) {
93 if ( fields[i].getModifiers() == Modifier.STATIC ) {
100 throw new SerialException("Located static fields i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DReachableQuery.java77 private void printFields(String[] fields, String title) { argument
78 if (fields.length == 0) {
85 for (int i = 0; i < fields.length; i++) {
86 print(fields[i]);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DBIInterface.java44 fields = parseTokens(DOMUtil.getAttribute(e,"properties"));
47 fields = new String[0];
72 private final String[] fields; field in class:BIInterface
74 /** Gets the names of fields in this interface. */
75 public String[] fields() { return fields; } method in class:BIInterface
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksDocumentFrame.java130 List<Component> fields = new ArrayList<Component>(); field in class:MetalworksDocumentFrame.LabeledPairLayout
138 fields.add(c);
152 Iterator<Component> fieldIter = fields.listIterator();
181 Iterator<Component> fieldIter = fields.listIterator();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DMethodHTML.java65 * Convert methods and fields into HTML file.
77 Method[] methods, Field[] fields,
89 for(int i=0; i < fields.length; i++)
90 writeField(fields[i]);
76 MethodHTML(String dir, String class_name, Method[] methods, Field[] fields, ConstantHTML constant_html, AttributeHTML attribute_html) argument
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DStruct.java43 * - type32.fields.count == type64.fields.count
48 public final List<Field> fields; field in class:Struct
67 this.fields = Fp.map2(new Map2<NField,NField,Field>(){
72 }, nstruct32.fields, nstruct64.fields);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaKlass.java84 private static Map fields = new HashMap(); field in class:JSJavaKlass
86 fields.put(name, new Integer(fieldId));
90 Integer res = (Integer) fields.get(name);
H A DJSJavaField.java85 Object[] fieldNames = fields.keySet().toArray();
134 private static Map fields = new HashMap(); field in class:JSJavaField
136 fields.put(name, new Integer(fieldId));
140 Integer res = (Integer) fields.get(name);
H A DJSJavaFrame.java68 Object[] fieldNames = fields.keySet().toArray();
103 private static Map fields = new HashMap(); field in class:JSJavaFrame
105 fields.put(name, new Integer(fieldId));
109 Integer res = (Integer) fields.get(name);
H A DJSJavaHeap.java67 Object[] tmp = fields.keySet().toArray();
224 private static Map fields = new HashMap(); field in class:JSJavaHeap
226 fields.put(name, new Integer(fieldId));
230 Integer res = (Integer) fields.get(name);
H A DJSJavaMethod.java101 Object[] fieldNames = fields.keySet().toArray();
138 private static Map fields = new HashMap(); field in class:JSJavaMethod
140 fields.put(name, new Integer(fieldId));
144 Integer res = (Integer) fields.get(name);
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DClassDoc.java78 * Return the Serializable fields of this class or interface.
80 * Return either a list of default fields documented by
89 * fields of this class or interface.
97 * Return true if Serializable fields are explicitly defined with
186 * fields in this class or interface.
190 * fields in this class or interface.
192 FieldDoc[] fields(); method in interface:ClassDoc
195 * Return fields in this class or interface, filtered to the specified
202 * Specify false to include all fields regardless of
205 * fields i
207 FieldDoc[] fields(boolean filter); method in interface:ClassDoc
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConstantsSummaryWriter.java121 * @param fields the constants being documented.
125 public abstract void addConstantMembers(ClassDoc cd, List<FieldDoc> fields, argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DFieldBuilder.java47 * The class whose fields are being documented.
52 * The visible fields for the given class.
62 * The list of fields being documented.
64 private List<ProgramElementDoc> fields; field in class:FieldBuilder
101 builder.fields =
106 builder.fields,
120 * Returns a list of fields that will be documented for the given class.
125 * @return a list of fields that will be documented.
132 * Returns the visible member map for the fields of this class.
134 * @return the visible member map for the fields o
[all...]
H A DPropertyBuilder.java47 * The class whose fields are being documented.
52 * The visible fields for the given class.
62 * The list of fields being documented.
64 private List<ProgramElementDoc> fields; field in class:PropertyBuilder
101 builder.fields = new ArrayList<ProgramElementDoc>(
105 builder.fields,
119 * Returns a list of fields that will be documented for the given class.
124 * @return a list of fields that will be documented.
131 * Returns the visible member map for the fields of this class.
133 * @return the visible member map for the fields o
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSerializedForm.java58 * of each Serializable fields.
69 /* List of FieldDocImpl - Serializable fields.
70 * Singleton list if class defines Serializable fields explicitly.
71 * Otherwise, list of default serializable fields.
74 private final ListBuffer<FieldDocImpl> fields = new ListBuffer<FieldDocImpl>(); field in class:SerializedForm
76 /* True if class specifies serializable fields explicitly.
92 * Catalog Serializable fields for Serializable class.
118 /* Define serializable fields with array of ObjectStreamField.
125 fields.append(dsfDoc);
129 /* Calculate default Serializable fields a
261 FieldDoc[] fields() { method in class:SerializedForm
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DClassParser.java88 private Field[] fields; // class fields, i.e., its variables field in class:ClassParser
145 * the contained data, i.e., constants, methods, fields and commands.
173 /****************** Read class fields and methods ***************/
174 // Read class fields, i.e., the variables of the class
208 constant_pool, interfaces, fields,
261 * Read information about the fields of the class, i.e., its variables.
270 fields = new Field[fields_count];
273 fields[i] = new Field(file, constant_pool);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicCompoundType.java35 private List fields; field in class:BasicCompoundType
66 return ((fields == null) ? 0 : fields.size());
69 return (Field) fields.get(i);
73 if (fields == null) {
74 fields = new ArrayList();
76 fields.add(f);
91 if (fields != null) {
92 for (Iterator iter = fields.iterator(); iter.hasNext(); ) {
104 // our fields an
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DCTypeTreeNodeAdapter.java41 private CTypeFieldIdentifier[] fields = null; field in class:CTypeTreeNodeAdapter
59 if (fields == null) {
62 fields = (CTypeFieldIdentifier[]) f.toArray(new CTypeFieldIdentifier[0]);
64 return fields;
102 fields = (CTypeFieldIdentifier[])statics.toArray(new CTypeFieldIdentifier[0]);
113 fields = (CTypeFieldIdentifier[])statics.toArray(new CTypeFieldIdentifier[0]);
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldInfo.hpp31 // This class represents the field information contained in the fields
43 // fields
68 static FieldInfo* from_field_array(typeArrayOop fields, int index) { argument
69 return ((FieldInfo*)fields->short_at_addr(index * field_slots));
71 static FieldInfo* from_field_array(u2* fields, int index) { argument
72 return ((FieldInfo*)(fields + index * field_slots));
117 assert(is_internal(), "only internal fields");
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DObjectReference.java96 * Gets the value of multiple instance and/or static fields in this object.
101 * @param fields a list of {@link Field} objects containing the
108 Map<Field,Value> getValues(List<? extends Field> fields); argument
292 * examination of variables, fields, and arrays during the suspension
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypeParser.java160 List<NStruct.NField> fields = new ArrayList<NStruct.NField>();
171 fields.add(new NStruct.NField(fname, type));
175 return getNew(cname, fields);
178 protected NType getNew(String cname, List<NStruct.NField> fields){ argument
179 return new NStruct(cname, fields);
189 @Override protected NType getNew(String cname, List<NStruct.NField> fields){ argument
190 return new NUnion(cname, Fp.map(NUnion.zeroOffsets, fields));

Completed in 171 milliseconds

1234