Searched refs:isWritable (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfo.java69 public boolean isWritable() ; method in interface:OpenMBeanAttributeInfo
93 * <li>their access properties (isReadable, isWritable and isIs) are equal</li>
H A DOpenMBeanAttributeInfoSupport.java113 * @param isWritable {@code true} if the attribute has a setter
127 boolean isWritable,
129 this(name, description, openType, isReadable, isWritable, isIs,
153 * @param isWritable {@code true} if the attribute has a setter
174 boolean isWritable,
183 isWritable,
221 * @param isWritable {@code true} if the attribute has a setter
248 boolean isWritable,
252 this(name, description, openType, isReadable, isWritable, isIs,
278 * @param isWritable {
123 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs) argument
170 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<?> openType, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
244 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue) argument
313 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue, T[] legalValues) argument
385 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue) argument
399 OpenMBeanAttributeInfoSupport(String name, String description, OpenType<T> openType, boolean isReadable, boolean isWritable, boolean isIs, T defaultValue, T[] legalValues, Comparable<T> minValue, Comparable<T> maxValue) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredAttributeInfoImpl.java36 boolean isWritable, boolean isStatistic )
40 this.writableFlag = isWritable;
52 public boolean isWritable( ) { method in class:MonitoredAttributeInfoImpl
35 MonitoredAttributeInfoImpl( String description, Class type, boolean isWritable, boolean isStatistic ) argument
H A DMonitoredAttributeInfoFactoryImpl.java35 String description, Class type, boolean isWritable,
39 isWritable, isStatistic );
34 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoredAttributeInfo.java46 * If the Attribute is writable from ASAdmin then isWritable() will return
54 public boolean isWritable(); method in interface:MonitoredAttributeInfo
H A DMonitoredAttributeInfoFactory.java46 Class type, boolean isWritable, boolean isStatistic );
45 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
H A DMonitoredAttributeBase.java92 if( !attributeInfo.isWritable() ) {
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanAttributeInfo.java100 * @param isWritable True if the attribute has a setter method, false otherwise.
113 boolean isWritable,
115 this(name, type, description, isReadable, isWritable, isIs,
126 * @param isWritable True if the attribute has a setter method, false otherwise.
143 boolean isWritable,
150 this.isWrite = isWritable;
235 public boolean isWritable() { method in class:MBeanAttributeInfo
251 if (isWritable())
255 } else if (isWritable())
279 * #isWritable()}, an
109 MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs) argument
139 MBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleInfo.java81 new ObjectStreamField("isWritable", boolean.class),
93 * @serialField isWritable boolean Write access mode: <code>true</code> if role is writable
146 private boolean isWritable; field in class:RoleInfo
336 roleInfo.isWritable(),
374 public boolean isWritable() { method in class:RoleInfo
375 return isWritable;
461 result.append("; isWritable: " + isWritable);
493 isWritable = write;
547 isWritable
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DMisc.java246 * Exercise isReadbale, isWritable, isExecutable, exists, notExists
252 assertTrue(!isWritable(doesNotExist));
261 assertTrue(isWritable(file));
265 assertTrue(isWritable(tmpdir));
277 assertTrue(isWritable(link));
287 assertTrue(!isWritable(link));
316 assertTrue(!isWritable(file));
331 assertTrue(!isWritable(file));
342 assertTrue(isWritable(file));
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java295 * <p> An invocation of this method of the form <tt>k.isWritable()</tt>
311 public final boolean isWritable() { method in class:SelectionKey
/openjdk7/jdk/src/share/classes/java/sql/
H A DResultSetMetaData.java248 boolean isWritable(int column) throws SQLException; method in interface:ResultSetMetaData
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DTrivial.java50 sk.isWritable();
H A DConnect.java106 if(sk.isWritable() && (buf.remaining() > 0)) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXTable.java97 public abstract boolean isWritable(int row); method in class:XTable
106 return (isReadable(row) && isWritable(row));
115 && isWritable(row)
122 && isWritable(row));
H A DXMBeanAttributes.java171 if (!(isColumnEditable(column) && isWritable(row) &&
250 isWritable(row) && Utils.isEditableType(getClassName(row))) {
332 public synchronized boolean isWritable(int row) { method in class:XMBeanAttributes
335 return (attributesInfo[index].isWritable());
755 if (!attributesInfo[i].isWritable() ||
837 !isWritable(row) ||
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanAttributeInfo.java271 * @param isWritable True if the attribute has a setter method, false otherwise.
279 boolean isWritable,
283 super(name, type, description, isReadable, isWritable, isIs);
302 * @param isWritable True if the attribute has a setter method, false otherwise.
319 boolean isWritable,
323 super(name, type, description, isReadable, isWritable, isIs);
348 inInfo.isWritable(),
434 " ; isWritable: " + this.isWritable() +
275 ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs) argument
315 ModelMBeanAttributeInfo(String name, String type, String description, boolean isReadable, boolean isWritable, boolean isIs, Descriptor descriptor) argument
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DConnectWrite.java78 if (!sk.isWritable())
H A DOpRead.java70 if (key.isWritable()) {
H A DRacyDeregister.java134 if (sel.selectedKeys().contains(key[0]) && key[0].isWritable()) {
H A DChangingInterests.java96 boolean writable = k.isWritable();
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanIntrospector.java148 final boolean isWritable = (setter != null);
167 if (isWritable) {
178 isWritable,
186 isWritable,
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DCommUp.java138 check(!sk.isWritable(),
163 check(!sk.isWritable(),
261 check(!sk.isWritable(),
/openjdk7/jdk/test/javax/management/Introspector/
H A DClassLeakTest.java83 || !attrs[0].isReadable() || !attrs[0].isWritable()
/openjdk7/jdk/test/com/sun/nio/sctp/SctpServerChannel/
H A DNonBlockingAccept.java159 check(!sk.isWritable(),

Completed in 82 milliseconds

12