Searched refs:value (Results 101 - 125 of 3502) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/awt/
H A DAttributeValue.java32 private final int value; field in class:AttributeValue
35 protected AttributeValue(int value, String[] names) { argument
37 log.finest("value = " + value + ", names = " + names);
41 if ((value < 0) || (names == null) || (value >= names.length)) {
45 this.value = value;
51 return value;
54 return names[value];
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDoubleExpression.java39 double value; field in class:DoubleExpression
44 public DoubleExpression(long where, double value) { argument
46 this.value = value;
50 * Get the value
53 return new Double(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
68 return (Double.doubleToLongBits(value)
[all...]
H A DFloatExpression.java39 float value; field in class:FloatExpression
44 public FloatExpression(long where, float value) { argument
46 this.value = value;
50 * Get the value
53 return new Float(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
68 return (Float.floatToIntBits(value)
[all...]
H A DLongExpression.java39 long value; field in class:LongExpression
44 public LongExpression(long where, long value) { argument
46 this.value = value;
50 * Get the value
53 return new Long(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
67 return value
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/closure/
H A DConstant.java31 private Object value ; field in class:Constant
33 public Constant( Object value )
35 this.value = value ;
40 return value ;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DHackJavaValue.java49 private String value; field in class:HackJavaValue
52 public HackJavaValue(String value, int size) { argument
53 this.value = value;
58 return value;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DMimeHeader.java30 * An object that stores a MIME header name and its value. One or more
39 private String value; field in class:MimeHeader
43 * name and value.
46 * @param value a <code>String</code> giving the value of the header
48 public MimeHeader(String name, String value) { argument
50 this.value = value;
63 * Returns the value of this <code>MimeHeader</code> object.
65 * @return the value o
[all...]
/openjdk7/jdk/test/java/beans/Introspector/4750368/com/foo/test/
H A DComponent.java28 private int value; field in class:Component
39 return this.value;
42 public void setValue(int value) { argument
43 this.value = value;
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest7186794.java36 if (null == BeanUtils.findPropertyDescriptor(MyBean.class, "value").getWriteMethod()) {
43 protected List<String> value; field in class:Test7186794.BaseBean
45 public void setValue(List<String> value) { argument
46 this.value = value;
52 return super.value;
H A DTest7189112.java34 if (null == BeanUtils.findPropertyDescriptor(MyBean.class, "value").getWriteMethod()) {
41 private Object value; field in class:Test7189112.BaseBean
44 return this.value;
47 public void setValue(Object value) { argument
48 this.value = value;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DConstants.java48 public static Object decode(Object value, Type type) { argument
49 if (value instanceof Integer) {
50 int i = (Integer) value;
58 return value;
62 * Returns a string representation of a constant value (given in
65 public static String format(Object value, Type type) { argument
66 value = decode(value, type);
68 case BYTE: return formatByte((Byte) value);
69 case LONG: return formatLong((Long) value);
84 format(Object value) argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DDataOutputStream.java29 * for marshalling custom value types. This interface is used by user
30 * written custom marshalling code for custom value types.
37 * Writes the Any value to the output stream.
38 * @param value The value to be written.
40 void write_any (org.omg.CORBA.Any value); argument
43 * Writes the boolean value to the output stream.
44 * @param value The value to be written.
46 void write_boolean (boolean value); argument
52 write_char(char value) argument
58 write_wchar(char value) argument
64 write_octet(byte value) argument
70 write_short(short value) argument
77 write_ushort(short value) argument
83 write_long(int value) argument
89 write_ulong(int value) argument
95 write_longlong(long value) argument
102 write_ulonglong(long value) argument
108 write_float(float value) argument
114 write_double(double value) argument
122 write_string(String value) argument
128 write_wstring(String value) argument
134 write_Object(org.omg.CORBA.Object value) argument
140 write_Abstract(java.lang.Object value) argument
146 write_Value(java.io.Serializable value) argument
152 write_TypeCode(org.omg.CORBA.TypeCode value) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/memo/
H A DMemoizedBoolean.java32 private boolean value; field in class:MemoizedBoolean
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedByte.java32 private byte value; field in class:MemoizedByte
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedChar.java32 private char value; field in class:MemoizedChar
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedDouble.java32 private double value; field in class:MemoizedDouble
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedFloat.java32 private float value; field in class:MemoizedFloat
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedInt.java32 private int value; field in class:MemoizedInt
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedLong.java32 private long value; field in class:MemoizedLong
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedObject.java32 private Object value; field in class:MemoizedObject
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedShort.java32 private short value; field in class:MemoizedShort
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DTextSyntax.java34 * implementation of all attributes whose value is a string. The text attribute
37 * value is immutable.
48 * String value of this text attribute.
51 private String value; field in class:TextSyntax
62 * @param value Text string.
68 * (unchecked exception) Thrown if <CODE>value</CODE> is null.
70 protected TextSyntax(String value, Locale locale) { argument
71 this.value = verify (value);
75 private static String verify(String value) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DEnumControl.java32 * by a set of buttons, each of which chooses one value or setting. For
68 * The current value.
70 private Object value; field in class:EnumControl
82 * @param value the initial control value
84 protected EnumControl(Type type, Object[] values, Object value) { argument
89 this.value = value;
98 * Sets the current value for the control. The default implementation
99 * simply sets the value a
107 setValue(Object value) argument
147 isValueSupported(Object value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/
H A DConnector.java80 * information about the argument and its default value.
83 * information and default value.
88 * Specification for and value of a Connector argument.
119 * Returns the current value of the argument. Initially, the
120 * default value is returned. If the value is currently unspecified,
123 * @return the current value of the argument.
125 String value(); method in interface:Connector.Argument
128 * Sets the value of the argument.
129 * The value shoul
134 setValue(String value) argument
141 isValid(String value) argument
163 setValue(boolean value) argument
171 isValid(String value) argument
181 stringValueOf(boolean value) argument
207 setValue(int value) argument
214 isValid(String value) argument
221 isValid(int value) argument
231 stringValueOf(int value) argument
265 isValid(String value) argument
283 isValid(String value) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DNumberEditor.java38 Object value = getValue();
39 return (value != null)
40 ? value.toString()

Completed in 90 milliseconds

1234567891011>>