Searched defs:description (Results 1 - 25 of 205) sorted by relevance

123456789

/openjdk7/jdk/test/java/net/Socket/asyncClose/
H A DSocket_getOutputStream_write.java34 public String description() { method in class:Socket_getOutputStream_write
H A DDatagramSocket_receive.java41 public String description() { method in class:DatagramSocket_receive
H A DServerSocket_accept.java41 public String description() { method in class:ServerSocket_accept
H A DSocket_getInputStream_read.java42 public String description() { method in class:Socket_getInputStream_read
H A DAsyncCloseTest.java26 * should override description() and go() methods.
30 public abstract String description(); method in class:AsyncCloseTest
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DInheritedAttribute.java54 /** The description of the attribute. Can be a key to a resource
55 * bundle for I18N support. Note that this needs a description, otherwise
57 * annotation is used in all other cases. The description cannot be
59 * @return The description.
61 String description() ; method in interface:InheritedAttribute
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DLongMonitoredAttributeBase.java56 * @param description of the Attribute, Please provid a well thought out
57 * description, so that the admin can make sense of the attribute supplied.
60 public LongMonitoredAttributeBase(String name, String description) { argument
65 description, Long.class, false, false );
H A DStringMonitoredAttributeBase.java57 * @param description of this attribute
63 public StringMonitoredAttributeBase(String name, String description) { argument
68 description, String.class, false, false );
H A DMonitoredAttributeInfoFactory.java45 MonitoredAttributeInfo createMonitoredAttributeInfo( String description, argument
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryType.java58 private final String description; field in class:MemoryType
61 this.description = s;
69 return description;
/openjdk7/jdk/src/share/classes/java/sql/
H A DDriverPropertyInfo.java40 * name and value. The <code>description</code> and <code>choices</code>
58 * A brief description of the property, which may be null.
60 public String description = null; field in class:DriverPropertyInfo
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleIcon.java49 * Gets the description of the icon. This is meant to be a brief
50 * textual description of the object. For example, it might be
54 * @return the description of the icon
59 * Sets the description of the icon. This is meant to be a brief
60 * textual description of the object. For example, it might be
64 * @param description the description of the icon
66 public void setAccessibleIconDescription(String description); argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioSynthesizerPropertyInfo.java36 * name and value. The <code>description</code> and <code>choices</code>
59 * A brief description of the property, which may be null.
61 public String description = null; field in class:AudioSynthesizerPropertyInfo
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_MidiUtils.h45 char* description; // out member in struct:tag_ALSA_MIDIDeviceDescription
H A DPLATFORM_API_LinuxOS_ALSA_MidiUtils.h45 char* description; // out member in struct:tag_ALSA_MIDIDeviceDescription
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryAttachingConnector.java70 public String description() { method in class:SharedMemoryAttachingConnector
71 return getString("memory_attaching.description");
H A DSharedMemoryListeningConnector.java81 public String description() { method in class:SharedMemoryListeningConnector
82 return getString("memory_listening.description");
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DSerialFieldTag.java36 * - description of the valid values for the field
70 public String description(); method in interface:SerialFieldTag
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredAttributeInfoFactoryImpl.java35 String description, Class type, boolean isWritable,
38 return new MonitoredAttributeInfoImpl( description, type,
34 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
H A DMonitoredAttributeInfoImpl.java31 private final String description; field in class:MonitoredAttributeInfoImpl
35 MonitoredAttributeInfoImpl( String description, Class type, argument
38 this.description = description;
45 return this.description;
H A DMonitoringManagerFactoryImpl.java37 String nameOfTheRoot, String description)
42 m = new MonitoringManagerImpl(nameOfTheRoot, description);
36 createMonitoringManager( String nameOfTheRoot, String description) argument
H A DMonitoringManagerImpl.java37 MonitoringManagerImpl(String nameOfTheRoot, String description) { argument
41 f.createMonitoredObject(nameOfTheRoot, description);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCFlushInstruction.java31 final String description; field in class:SPARCFlushInstruction
36 description = initDescription();
48 return description;
H A DSPARCIllegalInstruction.java31 final private String description; field in class:SPARCIllegalInstruction
36 description = "bad opcode - " + Integer.toHexString(instruction);
40 return description;
H A DSPARCUnimpInstruction.java30 final private String description; field in class:SPARCUnimpInstruction
36 description = initDescription();
61 return description;

Completed in 80 milliseconds

123456789