Attributs
Définissent l'état des objets
interface exemple{
attribute float heigth;
//readonly attribute float heigth;
};
et implicitement des opérations d'accès
interface exemple{
float _get_heigth();
void _set_heigth(in float h); //absent en readonly
};