1 package com.bonevich.erj.mof.interfaces.model;
2
3 public interface DataType extends com.bonevich.erj.mof.interfaces.model.AttributeType
4 {
5 // attribute : name
6 public String getName();
7 public void setName(String newValue);
8 // attribute : descriptor
9 public String getDescriptor();
10 public void setDescriptor(String newValue);
11 }
This page was automatically generated by Maven