Searched defs:field (Results 101 - 125 of 304) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DIsSetField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
76 // this field renderer doesn't support the isSet/unset methods generation.
H A DNoExtendedContentField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
82 * for this field.
93 * for this field.
H A DUntypedListField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
76 * for this field.
88 * for this field.
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java120 for (Field field : getFields(type)) {
121 int mod = field.getModifiers();
123 log("validate field", field.getName());
124 validate(object1, object2, field);
156 private void validate(Object object1, Object object2, Field field) { argument
158 object1 = field.get(object1);
159 object2 = field.get(object2);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DFieldWriter.java32 * The interface for writing field output.
46 * Get the field details tree header.
50 * @return content tree for the field details header
56 * Get the field documentation tree header.
58 * @param field the constructor being documented
59 * @param fieldDetailsTree the content tree representing field details
60 * @return content tree for the field documentation header
62 public Content getFieldDocTreeHeader(FieldDoc field, argument
66 * Get the signature for the given field.
68 * @param field th
71 getSignature(FieldDoc field) argument
79 addDeprecated(FieldDoc field, Content fieldDocTree) argument
87 addComments(FieldDoc field, Content fieldDocTree) argument
95 addTags(FieldDoc field, Content fieldDocTree) argument
[all...]
H A DPropertyWriter.java32 * The interface for writing field output.
46 * Get the field details tree header.
50 * @return content tree for the field details header
56 * Get the field documentation tree header.
58 * @param field the constructor being documented
59 * @param fieldDetailsTree the content tree representing field details
60 * @return content tree for the field documentation header
62 public Content getFieldDocTreeHeader(MethodDoc field, argument
66 * Get the signature for the given field.
68 * @param field th
71 getSignature(MethodDoc field) argument
79 addDeprecated(MethodDoc field, Content fieldDocTree) argument
87 addComments(MethodDoc field, Content fieldDocTree) argument
95 addTags(MethodDoc field, Content fieldDocTree) argument
[all...]
/openjdk7/langtools/test/tools/apt/mirror/type/
H A DWildcardTyp.java81 private WildcardType wildcardFor(String field) { argument
82 DeclaredType d = (DeclaredType) getField(field).getType();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DResources.java89 for (Field field : clazz.getFields()) {
90 if (isWritableField(field)) {
91 String key = field.getName();
96 setFieldValue(field, message);
102 private static boolean isWritableField(Field field) { argument
103 int modifiers = field.getModifiers();
129 private static void setFieldValue(Field field, String value) { argument
131 field.set(null, value);
133 throw new Error("Unable to access or set message for field " + field
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCatchStatement.java46 LocalMember field; field in class:CatchStatement
92 field = new LocalMember(where, ctx.field.getClassDefinition(), mod, type, id);
93 ctx.declare(env, field);
94 vset.addVar(field.number);
108 if (field.isUsed()) {
109 ctx.declare(env, field);
125 if (field != null) {
126 s.field = field
[all...]
H A DFieldUpdater.java34 * field referenced from another class, e.g., an inner class. An expression denoting a
35 * reference to the object to which the field belongs is associated with getter and
55 // The field to which this updater applies.
56 // It would be easy to eliminate the need to store the field here, but we retain it for
58 private MemberDefinition field; field in class:FieldUpdater
61 // If the field is static, 'base' may be null, but need not be, as a static field
78 public FieldUpdater(long where, MemberDefinition field, argument
81 this.field = field;
[all...]
H A DThisExpression.java40 LocalMember field; field in class:ThisExpression
53 public ThisExpression(long where, LocalMember field) { argument
55 this.field = field;
56 field.readcount++;
60 field = ctx.getLocalField(idThis);
61 field.readcount++;
91 if (ctx.field.isStatic()) {
96 if (field == null) {
97 field
[all...]
H A DVarDeclarationStatement.java41 LocalMember field; field in class:VarDeclarationStatement
51 public VarDeclarationStatement(long where, LocalMember field, Expression expr) { argument
53 this.field = field;
64 if (field != null) {
65 if (ctx.getLocalClass(field.getName()) != null
66 && field.isInnerClass()) {
67 env.error(where, "local.class.redefined", field.getName());
70 ctx.declare(env, field);
71 if (field
[all...]
/openjdk7/jdk/src/share/classes/sun/util/
H A DBuddhistCalendar.java112 * Gets the value for a given time field.
113 * @param field the given time field.
114 * @return the value for the given time field.
116 public int get(int field) argument
118 if (field == YEAR) {
119 return super.get(field) + yearOffset;
121 return super.get(field);
125 * Sets the time field with the given value.
126 * @param field th
129 set(int field, int value) argument
143 add(int field, int amount) argument
163 roll(int field, int amount) argument
176 getDisplayName(int field, int style, Locale locale) argument
194 getDisplayNames(int field, int style, Locale locale) argument
224 getDisplayNamesImpl(int field, int style, Locale locale) argument
253 getActualMaximum(int field) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldGen.java67 * Template class for building up a field. The only extraordinary thing
68 * one can do is to add a constant value attribute to a field (which must of
78 * Declare a field. If it is static (isStatic() == true) and has a
83 * @param type field type
84 * @param name field name
95 * Instantiate from existing field.
97 * @param field Field object
98 * @param cp constant pool (must contain the same entries as the field's constant pool)
100 public FieldGen(Field field, ConstantPoolGen cp) { argument
101 this(field
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELifier.java136 _out.println(" FieldGen field;");
187 public void visitField(Field field) { argument
188 _out.println("\n field = new FieldGen(" +
189 printFlags(field.getAccessFlags()) +
190 ", " + printType(field.getSignature()) + ", \"" +
191 field.getName() + "\", _cp);");
193 ConstantValue cv = field.getConstantValue();
197 _out.println(" field.setInitValue(" + value + ")");
200 _out.println(" _cg.addField(field.getField());");
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDuration.java42 * minutes, and seconds) plus a sign (+/-) field.</p>
45 * (which represents that the field is not set),
46 * and the seconds field has a non-negative decimal or null.
121 * i.e. {@link #isSet(DatatypeConstants.Field field)} == <code>true</code>.</p>
244 * {@link #getField(DatatypeConstants.Field field) getField(DatatypeConstants.YEARS)}.</p>
248 * Use {@link #getField(DatatypeConstants.Field field) getField(DatatypeConstants.YEARS)} to avoid possible loss of precision.</p>
250 * @return If the years field is present, return its value as an <code>int</code>, else return <code>0</code>.
257 * Obtains the value of the MONTHS field as an integer value,
261 * that this method works on the MONTHS field.
270 * Obtains the value of the DAYS field a
423 getField(final DatatypeConstants.Field field) argument
440 isSet(final DatatypeConstants.Field field) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DObjectStreamField.java44 * A description of a field in a serializable class.
61 * Create a named field with the specified type.
101 ObjectStreamField(Field field) { argument
102 this(field.getName(), field.getType());
103 setField( field ) ;
124 * Get the name of this field.
131 * Get the type of the field.
171 return field;
174 void setField(Field field) { argument
260 private Field field; // Reflected field field in class:ObjectStreamField
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectStreamField.java45 * A description of a field in a serializable class.
52 * Create a named field with the specified type.
92 ObjectStreamField(Field field) { argument
93 this(field.getName(), field.getType());
94 this.field = field;
104 field = f;
115 * Get the name of this field.
122 * Get the type of the field
165 setField(Field field) argument
258 private Field field; // Reflected field field in class:ObjectStreamField
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassTypeImpl.java171 public void setValue(Field field, Value value) argument
H A DFieldImpl.java63 // get the value of static field
148 public int compareTo(Field field) { argument
150 int rc = declaringType.compareTo(field.declaringType());
153 declaringType.indexOf(field);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DCTypeTreeNodeAdapter.java68 final private Field field; field in class:CTypeTreeNodeAdapter.CTypeFieldIdentifier
73 field = f;
77 return field;
81 return field.getType().getName() + " " + holder.getName() + "::" + field.getName();
H A DOopTreeNodeAdapter.java127 public void doOop(OopField field, boolean isVMField) { ++numFields; } argument
128 public void doByte(ByteField field, boolean isVMField) { ++numFields; } argument
129 public void doChar(CharField field, boolean isVMField) { ++numFields; } argument
130 public void doBoolean(BooleanField field, boolean isVMField) { ++numFields; } argument
131 public void doShort(ShortField field, boolean isVMField) { ++numFields; } argument
132 public void doInt(IntField field, boolean isVMField) { ++numFields; } argument
133 public void doLong(LongField field, boolean isVMField) { ++numFields; } argument
134 public void doFloat(FloatField field, boolean isVMField) { ++numFields; } argument
135 public void doDouble(DoubleField field, boolean isVMField) { ++numFields; } argument
136 public void doCInt(CIntField field, boolea argument
158 doOop(OopField field, boolean isVMField) argument
171 doByte(ByteField field, boolean isVMField) argument
178 doChar(CharField field, boolean isVMField) argument
185 doBoolean(BooleanField field, boolean isVMField) argument
192 doShort(ShortField field, boolean isVMField) argument
199 doInt(IntField field, boolean isVMField) argument
206 doLong(LongField field, boolean isVMField) argument
213 doFloat(FloatField field, boolean isVMField) argument
220 doDouble(DoubleField field, boolean isVMField) argument
227 doCInt(CIntField field, boolean isVMField) argument
255 doOop(OopField field, boolean isVMField) argument
256 doByte(ByteField field, boolean isVMField) argument
257 doChar(CharField field, boolean isVMField) argument
258 doBoolean(BooleanField field, boolean isVMField) argument
259 doShort(ShortField field, boolean isVMField) argument
260 doInt(IntField field, boolean isVMField) argument
261 doLong(LongField field, boolean isVMField) argument
262 doFloat(FloatField field, boolean isVMField) argument
263 doDouble(DoubleField field, boolean isVMField) argument
264 doCInt(CIntField field, boolean isVMField) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFactoryImpl.java70 public JSJavaField newJSJavaField(Field field) { argument
71 if (field == null) return null;
72 return new JSJavaField(field, this);
H A DJSJavaField.java47 this.field = f;
55 return field.getID().getName();
57 return field.getSignature().asString();
61 return Boolean.valueOf(field.isPrivate());
63 return Boolean.valueOf(field.isPublic());
65 return Boolean.valueOf(field.isProtected());
67 return Boolean.valueOf(field.isPackagePrivate());
69 return Boolean.valueOf(field.isStatic());
71 return Boolean.valueOf(field.isFinal());
73 return Boolean.valueOf(field
159 private final Field field; field in class:JSJavaField
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DFieldPosition.java54 * field within the formatted output with two indices: the index
55 * of the first character of the field and the index of the last
56 * character of the field.
63 * formatted output (such as the position of a field).
76 * Input: Desired field to determine start and end offsets for.
79 int field = 0; field in class:FieldPosition
82 * Output: End offset of field in text.
83 * If the field does not occur in the text, 0 is returned.
88 * Output: Start offset of field in text.
89 * If the field doe
108 FieldPosition(int field) argument
264 matchesField(Format.Field attribute, int field) argument
[all...]

Completed in 399 milliseconds

1234567891011>>