Searched refs:immutable (Results 1 - 6 of 6) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java39 * and then the list can be made immutable, so that no
45 private boolean immutable = false ; field in class:FreezableList
58 (immutable == other.immutable) ;
66 public FreezableList( List delegate, boolean immutable )
69 this.immutable = immutable ;
79 immutable = true ;
84 return immutable ;
113 if (immutable)
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DStandardMBeanIntrospector.java143 the info is immutable until we know whether the MBean class
150 boolean immutable = isDefinitelyImmutableInfo(resourceClass);
152 "immutableInfo=" + immutable);
156 * class has immutable MBeanInfo. A Standard MBean that is a
159 * we might not know if it is immutable. But if it is a subclass of
167 Boolean immutable = definitelyImmutable.get(implClass);
168 if (immutable == null) {
174 immutable = (m.getDeclaringClass() == nbs);
180 immutable = false;
181 definitelyImmutable.put(implClass, immutable);
[all...]
/openjdk7/jdk/test/javax/management/Introspector/
H A DImmutableNotificationInfoTest.java92 boolean immutable = ("true".equals(immutableValue));
93 if (immutable != expectImmutable) {
H A DChangingNotifsTest.java79 boolean immutable = (immut != null && immut.equals("true"));
80 if (immutable != mx) {
/openjdk7/jdk/test/javax/management/mxbean/
H A DMiscTest.java687 String immutable,
696 if (!d.getFieldValue("immutableInfo").equals(immutable)) {
698 "Bad descriptor: expected immutableInfo=" + immutable + ": " + d;
685 checkDescriptor(MBeanServer mbs, ObjectName on, String immutable, String intf) argument
/openjdk7/jdk/test/javax/management/descriptor/
H A DDescriptorTest.java159 the Descriptor. This should work for both mutable and immutable
160 Descriptors, since immutable Descriptors are supposed to do
200 immutable, then the change attempt must throw a
227 if (immutable(d))
462 // Even for immutable descriptors, these are allowed
507 // For immutable descriptors, these should provoke an exception
656 static boolean immutable(Descriptor d) { method in class:DescriptorTest

Completed in 365 milliseconds