Searched defs:field (Results 51 - 75 of 304) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DFieldRenderer.java26 package com.sun.tools.internal.xjc.generator.bean.field;
34 * Abstract model of one field in a generated class.
43 * <b>internal</b> access to the field.
47 * the "field meta model" design document.
60 * the generated field.
65 // // field renderers
H A DGenericFieldRenderer.java26 package com.sun.tools.internal.xjc.generator.bean.field;
H A DIsSetFieldRenderer.java26 package com.sun.tools.internal.xjc.generator.bean.field;
33 * FieldRenderer that wraps another field generator
H A DMessages.java26 package com.sun.tools.internal.xjc.generator.bean.field;
H A DSinglePrimitiveAccessField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
H A DUnboxedField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
H A DUntypedListFieldRenderer.java26 package com.sun.tools.internal.xjc.generator.bean.field;
H A DAbstractField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
96 * The type of this field, which can hold all the possible types.
101 * The publicly visible type of this field.
124 * Annotate the field according to the recipes given as {@link CPropertyInfo}.
126 protected void annotate( JAnnotatable field ) {
128 assert(field!=null);
132 so that it can be better shared, for how a field gets
140 annotateAttribute(field);
142 annotateElement(field);
144 field
161 annotateReference(JAnnotatable field) argument
210 annotateElement(JAnnotatable field) argument
251 writeXmlElementAnnotation( JAnnotatable field, CTypeRef ctype, JType jtype, boolean checkWrapper ) argument
331 getXew(boolean checkWrapper, JAnnotatable field) argument
347 annotateAttribute(JAnnotatable field) argument
[all...]
H A DAbstractListField.java26 package com.sun.tools.internal.xjc.generator.bean.field;
56 /** The field that stores the list. */
57 protected JFieldVar field; field in class:AbstractListField
65 * if(field==null)
66 * field = create new list;
67 * return field;
108 // for the collectionType customization to take effect, the field needs to be strongly typed,
110 field = outline.implClass.field( JMod.PROTECTED, listT, prop.getName(false) );
112 field
172 protected final JFieldRef field; field in class:AbstractListField.Accessor
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DAccessorFactoryImpl.java45 * Access a field of the class.
48 * @param field the field within the class to be accessed.
49 * @param readOnly the isStatic value of the field's modifier.
50 * @return Accessor the accessor for this field
54 public Accessor createFieldAccessor(Class bean, Field field, boolean readOnly) { argument
56 ? new Accessor.ReadOnlyFieldReflection(field)
57 : new Accessor.FieldReflection(field);
61 * Access a field of the class.
64 * @param field th
71 createFieldAccessor(Class bean, Field field, boolean readOnly, boolean supressWarning) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DFieldLocatable.java32 * {@link Locatable} implementation for a field.
38 private final F field; field in class:FieldLocatable
41 public FieldLocatable(Locatable upstream, F field, Navigator<?,?,F,?> nav) { argument
43 this.field = field;
52 return nav.getFieldLocation(field);
/openjdk7/langtools/test/com/sun/javadoc/testHtmlTableTags/pkg1/
H A DC1.java36 * Test field for class.
38 public C2 field; field in class:C1
/openjdk7/langtools/test/com/sun/javadoc/testNestedInlineTag/
H A DTestNestedInlineTag.java44 public int field; field in class:TestNestedInlineTag
63 //Test nested inline tag in field description.
/openjdk7/langtools/test/com/sun/javadoc/testValueTag/pkg1/
H A DClass1.java50 public int field; field in class:Class1
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DDeviceTables.cpp59 le_uint16 field = (word >> shift) & fieldMasks[format]; local
61 result = field;
63 if ((field & fieldSignBits[format]) != 0) {
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DFieldConstantData.java33 * This is a field constant pool data item
41 MemberDefinition field; field in class:FieldConstantData
47 FieldConstantData(ConstantPool tab, MemberDefinition field) { argument
48 this.field = field;
49 nt = new NameAndTypeData(field);
50 tab.put(field.getClassDeclaration());
58 if (field.isMethod()) {
59 if (field.getClassDefinition().isInterface()) {
67 out.writeShort(tab.index(field
[all...]
H A DLocalVariableTable.java49 void define(MemberDefinition field, int slot, int from, int to) { argument
54 if ((locals[i].field == field) && (locals[i].slot == slot) &&
66 locals[len++] = new LocalVariable(field, slot, from, to);
83 if ((locals[i].field.getName()==locals[j].field.getName())
124 //System.out.println("pc=" + locals[i].from + ", len=" + (locals[i].to - locals[i].from) + ", nm=" + locals[i].field.getName() + ", slot=" + locals[i].slot);
127 out.writeShort(tab.index(locals[i].field.getName().toString()));
128 out.writeShort(tab.index(locals[i].field.getType().getTypeSignature()));
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DCompilerMember.java42 MemberDefinition field; field in class:CompilerMember
49 CompilerMember(MemberDefinition field, Assembler asm) { argument
50 this.field = field;
52 name = field.getName().toString();
53 sig = field.getType().getTypeSignature();
/openjdk7/jdk/src/share/classes/sun/tools/util/
H A DModifierFilter.java131 * @param field A MemberDefinition
133 * @return Whether the modifier of the field
138 public boolean checkMember(MemberDefinition field) { argument
139 return checkModifier(field.getModifiers());
/openjdk7/langtools/test/tools/javac/generics/6531090/
H A DT6531090a.java45 T field; field in class:T6531090a.C
53 F vf = arg.field;
54 I vi = arg.field;
55 I1 vi1 = arg.field;
56 E ve = arg.field;
57 W vt = arg.field;
/openjdk7/langtools/test/tools/javap/6937244/
H A DT6937244A.java57 if (line.contains("field")) {
58 verify(line, "java.util.List<java.lang.String> field");
87 public List<String> field; field in class:Test
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DMethodHTML.java104 * Print field of class.
106 * @param field field to print
109 private void writeField(Field field) throws IOException { argument
110 String type = Utility.signatureToString(field.getSignature());
111 String name = field.getName();
112 String access = Utility.accessToString(field.getAccessFlags());
118 Class2HTML.referenceType(type) + "</TD><TD><A NAME=\"field" + name + "\">" +
121 attributes = field.getAttributes();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DFieldActivator.java25 * Interface for a field activator. The field activator is responsible
52 * Request to activate the specified field. This method returns the
53 * matcher for the field.
57 * @param field The field to activate.
60 public XPathMatcher activateField(Field field, int initialDepth); argument
63 * Sets whether the given field is permitted to match a value.
65 * and match a field several times in the same scope.
67 * @param field Th
70 setMayMatch(Field field, Boolean state) argument
78 mayMatch(Field field) argument
[all...]
H A DValueStore.java28 * Each value stored corresponds to a field declared for the identity
54 * @param field The field associated to the value. This reference
55 * is used to ensure that each field only adds a value
59 public void addValue(Field field, Object actualValue, short valueType, ShortList itemValueType); argument
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DEllipticCurve.java45 private final ECField field; field in class:EllipticCurve
50 // Check coefficient c is a valid element in ECField field.
51 private static void checkValidity(ECField field, BigInteger c, argument
53 // can only perform check if field is ECFieldFp or ECFieldF2m.
54 if (field instanceof ECFieldFp) {
55 BigInteger p = ((ECFieldFp)field).getP();
61 } else if (field instanceof ECFieldF2m) {
62 int m = ((ECFieldF2m)field).getM();
70 * Creates an elliptic curve with the specified elliptic field
71 * <code>field</cod
81 EllipticCurve(ECField field, BigInteger a, BigInteger b) argument
101 EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed) argument
[all...]

Completed in 77 milliseconds

1234567891011>>