public PropertyModelInfoType(MBeanAttributeInfo attributeInfo)
     : base(attributeInfo)
 {
     access = "";
     if (attributeInfo.Readable)
     {
         access += "r";
     }
     if (attributeInfo.Writable)
     {
         access += "w";
     }
     type = JmxTypeMapping.GetJmxXmlType(attributeInfo.Type);
 }
Beispiel #2
0
 public OpenDataType_Type(OpenType value)
 {
     Name        = value.TypeName;
     Type        = JmxTypeMapping.GetJmxXmlType(value.Representation.AssemblyQualifiedName);
     Description = value.Description;
 }
Beispiel #3
0
 public ParameterModelInfoType(MBeanParameterInfo parameterInfo)
     : base(parameterInfo)
 {
     type = JmxTypeMapping.GetJmxXmlType(parameterInfo.Type);
 }
Beispiel #4
0
 public ParameterModelInfoType(string typeName)
 {
     type = JmxTypeMapping.GetJmxXmlType(typeName);
 }