Enum Class SetAccess
- All Implemented Interfaces:
Serializable,Comparable<SetAccess>,Constable
Specifies the access modifier to apply to the setter method for a property.
Rose conversion note: Corresponds to Class Attribute Specification -> Windchill -> WriteAccess.
Supported API: true
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGenerates a setter with no access modifier (traditionally referred to as "default" or "package" access); the setter may be called from within the package only.Do not generate a setter method.Generates aprotectedsetter.Generates apublicsetter.Use the same access as the getter method. -
Method Summary
-
Enum Constant Details
-
USE_GET_ACCESS
Use the same access as the getter method.Rose conversion note: Corresponds to
<Use Export Control>.Supported API: true
- See Also:
-
PUBLIC
Generates apublicsetter.Rose conversion note: Corresponds to
Public.Supported API: true
-
PROTECTED
Generates aprotectedsetter.Rose conversion note: Corresponds to
Protected.Supported API: true
-
PACKAGE
Generates a setter with no access modifier (traditionally referred to as "default" or "package" access); the setter may be called from within the package only.Rose conversion note: Corresponds to
Implementation.Supported API: true
-
PRIVATE
Do not generate a setter method.Rose conversion note: Corresponds to
Private.Supported API: true
-