Searched defs:rowType (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularType.java56 private CompositeType rowType; field in class:TabularType
84 * @param rowType The type of the row elements of tabular data values described by this tabular type instance;
89 * cannot be null or empty. Each element should be an item name defined in <var>rowType</var>
96 * @throws IllegalArgumentException if <var>rowType</var> is null,
102 * is not an item name defined in <var>rowType</var>.
106 CompositeType rowType,
113 // Check rowType is not null
115 if (rowType == null) {
116 throw new IllegalArgumentException("Argument rowType cannot be null.");
124 // Check all indexNames values are valid item names for rowType
104 TabularType(String typeName, String description, CompositeType rowType, String[] indexNames) argument
[all...]
/openjdk7/jdk/test/javax/management/mxbean/
H A DTigerMXBean.java165 CompositeType rowType, String[] indexNames) {
167 return new TabularType(typeName, description, rowType,
164 make(String typeName, String description, CompositeType rowType, String[] indexNames) argument

Completed in 27 milliseconds