Searched refs:myHashCode (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanConstructorInfoSupport.java55 private transient Integer myHashCode = null; field in class:OpenMBeanConstructorInfoSupport
251 if (myHashCode == null) {
255 myHashCode = Integer.valueOf(value);
260 return myHashCode.intValue();
H A DSimpleType.java172 private transient Integer myHashCode = null; // As this instance is immutable, these two values field in class:SimpleType
259 if (myHashCode == null) {
260 myHashCode = Integer.valueOf(this.getClassName().hashCode());
265 return myHashCode.intValue();
H A DOpenMBeanInfoSupport.java63 private transient Integer myHashCode = null; field in class:OpenMBeanInfoSupport
343 if (myHashCode == null) {
350 myHashCode = Integer.valueOf(value);
355 return myHashCode.intValue();
H A DOpenMBeanOperationInfoSupport.java63 private transient Integer myHashCode = null; field in class:OpenMBeanOperationInfoSupport
349 if (myHashCode == null) {
355 myHashCode = Integer.valueOf(value);
360 return myHashCode.intValue();
H A DOpenMBeanParameterInfoSupport.java87 private transient Integer myHashCode = null; // As this instance is immutable, these two values field in class:OpenMBeanParameterInfoSupport
587 if (myHashCode == null)
588 myHashCode = OpenMBeanAttributeInfoSupport.hashCode(this);
592 return myHashCode.intValue();
H A DTabularType.java65 private transient Integer myHashCode = null; // As this instance is immutable, these two values field in class:TabularType
328 if (myHashCode == null) {
334 myHashCode = Integer.valueOf(value);
339 return myHashCode.intValue();
H A DCompositeType.java65 private transient Integer myHashCode = null; field in class:CompositeType
420 if (myHashCode == null) {
427 myHashCode = Integer.valueOf(value);
432 return myHashCode.intValue();
H A DArrayType.java139 private transient Integer myHashCode = null; // As this instance is immutable, these two values field in class:ArrayType
724 if (myHashCode == null) {
729 myHashCode = Integer.valueOf(value);
734 return myHashCode.intValue();
H A DOpenMBeanAttributeInfoSupport.java94 private transient Integer myHashCode = null; field in class:OpenMBeanAttributeInfoSupport
1055 if (myHashCode == null)
1056 myHashCode = hashCode(this);
1060 return myHashCode.intValue();

Completed in 3970 milliseconds