Annotation Interface IconProperties


@Retention(CLASS) @Target({}) @Documented public @interface IconProperties
Indicates the paths to display icons. Paths are represented as UNIX-style relative paths inside the codebase directory (codebase itself is not included in the relative path).

Supported API: true

  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    The icon to display when the object is considered "open".
    The default icon to use when displaying the object.
  • Element Details

    • standardIcon

      String standardIcon
      The default icon to use when displaying the object. As an example, SubFolder sets this to wt/clients/images/folder.gif.

      Rose conversion note: Corresponds to Class Specification -> Windchill -> StandardIcon.

      Supported API: true

      Default:
      ""
    • openIcon

      String openIcon
      The icon to display when the object is considered "open". For example, consider a "closed" folder (which would use the standardIcon()) and an "open" folder, which would use this icon. If unspecified (left as ""), defaults to the value of standardIcon(). As an example, SubFolder sets this to wt/clients/images/folder_open.gif.

      Rose conversion note: Corresponds to Class Specification -> Windchill -> OpenIcon.

      Supported API: true

      Default:
      ""