COBCH1610 GETTER と SETTER の両方の可視性は指定できない

プロパティの GETTER および SETTER 指定の両方の可視性を指定しています。

可視性を設定できるのは、プロパティの GETTER または SETTER 指定のどちらかのみです。次に例を示します。

class-id myClass1.
property-id myProp1 string public.
    setter private.
    set property-value to "1234"
    getter.
    set myString to property-value
end property.
end class.