Searched refs:description (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/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/javax/swing/plaf/synth/
H A DColorType.java98 private String description; field in class:ColorType
107 * Creates a new ColorType with the specified description.
109 * @param description String description of the ColorType.
111 protected ColorType(String description) { argument
112 if (description == null) {
114 "ColorType must have a valid description");
116 this.description = description;
132 * Returns the textual description o
[all...]
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCIllegalInstruction.java31 final private String description; field in class:SPARCIllegalInstruction
36 description = "bad opcode - " + Integer.toHexString(instruction);
40 return description;
H A DSPARCFlushInstruction.java31 final String description; field in class:SPARCFlushInstruction
36 description = initDescription();
48 return description;
H A DSPARCUnimpInstruction.java30 final private String description; field in class:SPARCUnimpInstruction
36 description = initDescription();
61 return description;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86IllegalInstruction.java30 final private String description; field in class:X86IllegalInstruction
34 description = "bad opcode";
38 return description;
H A DX86FPInstruction.java32 final private String description; field in class:X86FPInstruction
37 description = initDescription();
43 description = initDescription();
58 return description;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
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 DMonitoredObjectFactoryImpl.java34 String description )
36 return new MonitoredObjectImpl( name, description );
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
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoredObjectFactory.java42 MonitoredObject createMonitoredObject( String name, String description );
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
H A DMonitoringManagerFactory.java42 String description );
/openjdk7/jdk/test/java/awt/im/6396526/
H A DIMLookAndFeel.java54 JTextArea description = new JTextArea("Please try typing using below-the-spot IM.\n\n eg. Use City IM with the following arguement:\n -Djava.awt.im.style=below-the-spot");
55 description.setPreferredSize(new Dimension(250, 70));
56 description.setEditable(false);
57 frame.getContentPane().add(description, BorderLayout.NORTH);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DRoot.java54 private String description; field in class:Root
73 public Root(long id, long refererId, int type, String description) { argument
74 this(id, refererId, type, description, null);
78 public Root(long id, long refererId, int type, String description, argument
83 this.description = description;
96 if ("".equals(description)) {
99 return description;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DJDBFileFilter.java69 private String description = null; field in class:JDBFileFilter
102 public JDBFileFilter(String extension, String description) { argument
107 if(description!=null) {
108 setDescription(description);
126 * Creates a file filter from the given string array and description.
133 public JDBFileFilter(String[] filters, String description) { argument
139 if(description!=null) {
140 setDescription(description);
206 * Returns the human readable description of this filter. For
217 if(description
243 setDescription(String description) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiDevice.java57 * description of properties to select default providers in
115 * <code>Strings</code> containing its name, vendor, and description.
297 * A description of the device.
299 private String description; field in class:MidiDevice.Info
312 * @param description a description of the device
315 protected Info(String name, String vendor, String description, String version) { argument
319 this.description = description;
365 * Obtains the description o
[all...]
/openjdk7/jdk/test/java/net/Socket/asyncClose/
H A DAsyncCloseTest.java26 * should override description() and go() methods.
30 public abstract String description(); method in class:AsyncCloseTest
/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/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DNode.java49 private String description; field in class:Node
56 public Node(Group parent, String nodeName, String description) { argument
59 this.description = description;
83 return description;
87 return (nodeName != null) ? new JLabel(description) : null;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DImageIcon.java81 String description = null; field in class:ImageIcon
143 * @param description a brief textual description of the image
146 public ImageIcon(String filename, String description) { argument
152 this.description = description;
167 * The description is initialized to the <code>filename</code> string.
172 @ConstructorProperties({"description"})
182 * @param description a brief textual description o
185 ImageIcon(URL location, String description) argument
213 ImageIcon(Image image, String description) argument
248 ImageIcon(byte[] imageData, String description) argument
392 setDescription(String description) argument
669 setAccessibleIconDescription(String description) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticCommand.hpp46 static const char* description() { function in class:HelpDCmd
60 static const char* description() { function in class:VersionDCmd
72 static const char* description() { function in class:CommandLineDCmd
87 static const char* description() { function in class:PrintSystemPropertiesDCmd
104 static const char* description() { function in class:PrintVMFlagsDCmd
120 static const char* description() { function in class:VMUptimeDCmd
134 static const char* description() { function in class:SystemGCDCmd
148 static const char* description() { function in class:RunFinalizationDCmd
169 static const char* description() { function in class:HeapDumpDCmd
190 static const char* description() { function in class:ClassHistogramDCmd
207 static const char* description() { function in class:ThreadDumpDCmd
256 static const char *description() { function in class:JMXStartRemoteDCmd
279 static const char *description() { function in class:JMXStartLocalDCmd
298 static const char *description() { function in class:JMXStopRemoteDCmd
[all...]

Completed in 128 milliseconds

1234567891011>>