COBCH1835 class-name does not have public implementation of get accessor for property property-name of interface interface-name

The program contains the class specified, which is declared as implementing an interface including a property with a getter, and that getter is not implemented by the class.

Resolution:

Correct the code; then recompile.

Example:

The following example shows code that would throw this error.

       interface-id IProperty.
       property-id MyProp string.
       getter.
       setter.
       end property.
       end interface.

       class-id a implements type IProperty.
       property-id MyProp string.
       setter.
       end property.
       end class.