Class AnnotationOperatorDescriptor

    • Constructor Detail

    • Method Detail

      • getName

        public String getName()
        Specified by:
        getName in interface ElementDescriptor
        Returns:
        The symbolic name used to unambiguously identify this element. E.g. the fully qualified name of a Java class.
      • getLabel

        public String getLabel()
        Specified by:
        getLabel in interface ElementDescriptor
        Returns:
        A human-readable version of the symbolic name to be used in user interfaces, or null if not declared.
      • getAlias

        public String getAlias()
        Specified by:
        getAlias in interface ElementDescriptor
        Returns:
        A short form of the symbolic name, or null if not declared.
      • getCopyright

        public String getCopyright()
        Specified by:
        getCopyright in interface OperatorDescriptor
        Returns:
        The copyright notice for the operator code, or null if not declared.
      • isInternal

        public boolean isInternal()
        Specified by:
        isInternal in interface OperatorDescriptor
        Returns:
        If true, this operator is considered for internal use only and thus may not be exposed in user interfaces. The default is false.
      • isAutoWriteDisabled

        public boolean isAutoWriteDisabled()
        Description copied from interface: OperatorDescriptor
        The GPF framework usually writes the target product of either single operators or processing graphs to the file system when executed from the GPT command-line interface or the operator GUI.

        If the autoWriteDisabled property is set, this default behaviour is switched off and hence, the operator or graph is responsible for outputting any computed results.

        Setting this property on an operator will only be useful, if it either does not generate a new target Product and/or if it does its own outputting of non-Product targets to external files.

        Specified by:
        isAutoWriteDisabled in interface OperatorDescriptor
        Returns:
        If true, the framework will prevent automatic writing of the target product to the file system.