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

/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanInfo.java257 * @param inName The name of the ModelMBeanAttributeInfo to get.
270 public ModelMBeanAttributeInfo getAttribute(String inName) argument
277 * @param inName The name of the ModelMBeanOperationInfo to get.
288 public ModelMBeanOperationInfo getOperation(String inName) argument
295 * @param inName The name of the ModelMBeanNotificationInfo to get.
305 public ModelMBeanNotificationInfo getNotification(String inName) argument
H A DModelMBeanInfoSupport.java732 public ModelMBeanAttributeInfo getAttribute(String inName) argument
740 if (inName == null) {
763 if (inName.equals(attrList[i].getName())) {
778 public ModelMBeanOperationInfo getOperation(String inName) argument
786 if (inName == null) {
788 new IllegalArgumentException("inName is null"),
797 if (inName.equals(operList[i].getName())) {
814 * @param inName the name of the constructor.
824 public ModelMBeanConstructorInfo getConstructor(String inName) argument
832 if (inName
857 getNotification(String inName) argument
[all...]

Completed in 56 milliseconds