1 package com.bonevich.erj.mof.interfaces.model;
2
3 public interface Attribute extends com.bonevich.erj.mof.interfaces.model.ModelElement
4 {
5 // attribute : constraint
6 public com.bonevich.erj.mof.interfaces.model.AttributeConstraint getConstraint();
7 public void setConstraint(com.bonevich.erj.mof.interfaces.model.AttributeConstraint newValue);
8 // attribute : defaultValue
9 public com.bonevich.erj.mof.interfaces.model.DefaultValue getDefaultValue();
10 public void setDefaultValue(com.bonevich.erj.mof.interfaces.model.DefaultValue newValue);
11 // reference : relation
12 public com.bonevich.erj.mof.interfaces.model.Relation getRelation();
13 public void setRelation(com.bonevich.erj.mof.interfaces.model.Relation newValue);
14 // reference : type
15 public com.bonevich.erj.mof.interfaces.model.AttributeType getType();
16 public void setType(com.bonevich.erj.mof.interfaces.model.AttributeType newValue);
17 }
This page was automatically generated by Maven