| /openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/ |
| H A D | MonitoredAttributeInfoFactoryImpl.java | 35 String description, Class type, boolean isWritable, 39 isWritable, isStatistic ); 34 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
|
| H A D | MonitoredAttributeInfoImpl.java | 36 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
|
| /openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/ |
| H A D | MonitoredAttributeInfo.java | 46 * If the Attribute is writable from ASAdmin then isWritable() will return 54 public boolean isWritable(); method in interface:MonitoredAttributeInfo
|
| H A D | MonitoredAttributeInfoFactory.java | 46 Class type, boolean isWritable, boolean isStatistic ); 45 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
|
| /openjdk7/jdk/src/share/classes/javax/management/openmbean/ |
| H A D | OpenMBeanAttributeInfo.java | 69 public boolean isWritable() ; method in interface:OpenMBeanAttributeInfo 93 * <li>their access properties (isReadable, isWritable and isIs) are equal</li>
|
| H A D | OpenMBeanAttributeInfoSupport.java | 113 * @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/jdk/src/share/classes/java/nio/channels/ |
| H A D | SelectionKey.java | 295 * <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 D | ResultSetMetaData.java | 248 boolean isWritable(int column) throws SQLException; method in interface:ResultSetMetaData
|
| /openjdk7/jdk/src/share/classes/javax/management/ |
| H A D | MBeanAttributeInfo.java | 100 * @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/modelmbean/ |
| H A D | ModelMBeanAttributeInfo.java | 271 * @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/src/share/classes/sun/tools/jconsole/inspector/ |
| H A D | XTable.java | 97 public abstract boolean isWritable(int row); method in class:XTable 106 return (isReadable(row) && isWritable(row)); 115 && isWritable(row) 122 && isWritable(row));
|
| H A D | XMBeanAttributes.java | 171 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/relation/ |
| H A D | RoleInfo.java | 81 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/src/share/classes/javax/sql/rowset/ |
| H A D | RowSetMetaDataImpl.java | 788 public boolean isWritable(int columnIndex) throws SQLException { method in class:RowSetMetaDataImpl
|
| /openjdk7/jdk/src/share/classes/java/nio/file/ |
| H A D | Files.java | 2392 * Used by isReadbale, isWritable, isExecutable to test access to a file. 2461 public static boolean isWritable(Path path) { method in class:Files
|