Class EditorRuntimeBuilderProps

    • Constructor Detail

      • EditorRuntimeBuilderProps

        public EditorRuntimeBuilderProps()
        Creates the screen identification property container without a name. The name must be set in all cases using the setPropertyAtom call.
      • EditorRuntimeBuilderProps

        public EditorRuntimeBuilderProps​(Atom propertyAtom)
        Creates the screen identification property container with the specified name. All system-reserved names for components begins with "$".
        Parameters:
        propertyAtom - the name of the component, unique within it's parent.
    • Method Detail

      • setup

        public void setup​(ModuleModel module,
                          IRuntimeBuilder runtimeBuilder)
        Sets up the property.
        Parameters:
        module - The Module model.
        runtimeBuilder - The runtime builder.
      • getModuleModel

        public ModuleModel getModuleModel()
        Gets the module model.
      • getAssetsDirectory

        public java.io.File getAssetsDirectory()
        Gets the Assets directory.
        Overrides:
        getAssetsDirectory in class RuntimeBuilderProps
        Returns:
        The Assets directory, null if not found or the properties are not yet assigned a module.
      • getAssetsSubFolder

        public java.io.File getAssetsSubFolder()
        Gets the subfolder in the assets directory.
        Returns:
        The subfolder to use for storing certificate keystores, splash screens, icons, etc. Returns null if not defined yet.
      • getOutputIFolder

        public org.eclipse.core.resources.IFolder getOutputIFolder()
        Gets the output directory (that may not be created).
      • getTooltipPropertyList

        public java.util.List<TooltipItem> getTooltipPropertyList()
        Gets the list of property names that should be displayed.
        Specified by:
        getTooltipPropertyList in interface ITooltipPropList
        Returns:
        The list, or null for no tooltip.
      • onRemoteEvent

        public void onRemoteEvent​(RemoteEvent event)
        Called when a remote property event should be processed by this property.

        A subclass can override this method to perform appropriate processing and is not required to call super.onRemoteEvent(e).

        The onRemoteEvent is NOT called when in a proxied property container, but rather the normal onEventSelf method.

        Specified by:
        onRemoteEvent in interface IGProp<GProp<?>[]>
        Overrides:
        onRemoteEvent in class GProp<GProp<?>[]>
        Parameters:
        event - The remote event.
      • verify

        public boolean verify​(PropVerification verification)
        Verifies this property container. The check performed is the extension of classes and that no circular reference is present.
        Specified by:
        verify in interface IGProp<GProp<?>[]>
        Overrides:
        verify in class PropCnr
        Parameters:
        verification - The property verification class.
        Returns:
        true if verification should proceed, false if disposed of and verification should not take place.