1 package com.bonevich.erj.mof.interfaces.model;
2
3 public interface Domain extends com.bonevich.erj.mof.interfaces.model.ModelElement, com.bonevich.erj.mof.interfaces.model.AttributeType
4 {
5 // attribute : dataType
6 public com.bonevich.erj.mof.interfaces.model.DataType getDataType();
7 public void setDataType(com.bonevich.erj.mof.interfaces.model.DataType newValue);
8 // attribute : defaultConstraint
9 public com.bonevich.erj.mof.interfaces.model.AttributeConstraint getDefaultConstraint();
10 public void setDefaultConstraint(com.bonevich.erj.mof.interfaces.model.AttributeConstraint newValue);
11 // attribute : defaultValue
12 public com.bonevich.erj.mof.interfaces.model.DefaultValue getDefaultValue();
13 public void setDefaultValue(com.bonevich.erj.mof.interfaces.model.DefaultValue newValue);
14 // reference : schema
15 public com.bonevich.erj.mof.interfaces.model.Schema getSchema();
16 public void setSchema(com.bonevich.erj.mof.interfaces.model.Schema newValue);
17 }
This page was automatically generated by Maven