yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Quintiq file version 2.0
#parent: #root
StaticMethod MustBeOverridden (
  String modelElement_i,
  String definitionName_i
) const declarative remote
{
  Description:
  [*
    Is meant to be used as implementation of a base-method that must be overridden before it can be used.
    The difference with making that method abstract is that an abstract method must _always_ be overridden and implemented, regardless if it is applicable.
    When this method is used, an error will only be raised with the method is actually used; only in that case it requires implementation.
  *]
  TextBody: 'error( LibDIF_Util::PREFIX(), modelElement_i + " must be overridden for type " + definitionName_i + "." );'
}