Interface IDomainObjectDefinition

All Known Implementing Classes:
DomainObjectDefinition

public interface IDomainObjectDefinition
This interface defines a data object.
Since:
9.3
Author:
A.Pragt
  • Method Details

    • getProperties

      String[] getProperties()
      Returns the names of the available properties.
      Returns:
      The names of the properties, never null.
    • getProperty

      IDomainPropertyDefinition getProperty(String name)
      Returns the property definition for the specified property.
      Parameters:
      name - The name of the property, not null.
      Returns:
      The propertyDefinition, never null.
      Throws:
      UnknownPropertyException - Is thrown in case of an unknown property.