Uses of Interface
de.xima.fc.interfaces.workflow.IResourceDescriptor
-
-
Uses of IResourceDescriptor in de.xima.fc.interfaces.workflow.elements
Methods in de.xima.fc.interfaces.workflow.elements that return IResourceDescriptor Modifier and Type Method Description default IResourceDescriptorIElementHandler. getCascadingStyleSheet(boolean devMode)Deprecated.ImplementIElementHandler.getCascadingStyleSheet(Locale, boolean)instead.default IResourceDescriptorIElementHandler. getCascadingStyleSheet(Locale locale, boolean devMode)Retrieves the CSS resources required by elements of this kind, when this node is displayed in the workflow designer.default IResourceDescriptorIElementHandler. getJavaScript(boolean devMode)Deprecated.ImplementIElementHandler.getJavaScript(Locale, boolean)instead.default IResourceDescriptorIElementHandler. getJavaScript(Locale locale, boolean devMode)Retrieves the JavaScript resources required by elements of this kind. -
Uses of IResourceDescriptor in de.xima.fc.plugin.interfaces.form
Methods in de.xima.fc.plugin.interfaces.form that return IResourceDescriptor Modifier and Type Method Description default IResourceDescriptorIPluginFormElementWidget. getCssForDesignerUiResource()default IResourceDescriptorIPluginFormElementWidget. getCssForDesignerUiResource(IPluginFormElementGetResourceParams params)Return the path to the CSS file that is loaded when the form designer is opened.default IResourceDescriptorIPluginFormDesignerResource. getCssResource(IPluginFormDesignerResourceGetResourceParams params)Returns the resource descriptors for additional CSS files that are loaded when the form designer is opened.default IResourceDescriptorIPluginFormElementWidget. getCssResource()default IResourceDescriptorIPluginFormElementWidget. getCssResource(IPluginFormElementGetResourceParams params)Return the path to the CSS file that is loaded when the form designer is opened.default IResourceDescriptorIPluginFormDesignerResource. getCssResourceForForm(IPluginFormDesignerResourceGetResourceParams params)Returns the resource descriptors for additional CSS files that are loaded when the form designer is opened.default IResourceDescriptorIPluginFormDesignerResource. getJavaScriptResource(IPluginFormDesignerResourceGetResourceParams params)Returns the resource descriptors for additional JavaScript files that are loaded when the form designer is opened.default IResourceDescriptorIPluginFormElementWidget. getJavaScriptResource()default IResourceDescriptorIPluginFormElementWidget. getJavaScriptResource(IPluginFormElementGetResourceParams params)Returns the contents of the JavaScript file that is loaded when the form designer is opened . -
Uses of IResourceDescriptor in de.xima.fc.workflow
Classes in de.xima.fc.workflow that implement IResourceDescriptor Modifier and Type Class Description classByteArrayResourceDescriptorImplementsIResourceDescriptorvia data from a byte array.classCombinedResourceDescriptorImplementsIResourceDescriptorby combining severalIResourceDescriptor.classDevResourceDescriptorWraps a resource and serves it directly from the file system when dev mode is turned on.classEmptyResourceDescriptorAn implementation ofIResourceDescriptorthat represents an empty resource (empty string).classPathResourceDescriptorImplementsIResourceDescriptorby reading data from a file.classSupplyingResourceDescriptorImplementsIResourceDescriptorby lazily obtaining data from a supplier.classUrlResourceDescriptorImplementsIResourceDescriptorvia anURL.classWrappedResourceDescriptorWraps an existingIResourceDescriptorwith a differentURI.Fields in de.xima.fc.workflow declared as IResourceDescriptor Modifier and Type Field Description static IResourceDescriptorEmptyResourceDescriptor. INSTANCEThe immutable instance of this empty resource descriptor.Methods in de.xima.fc.workflow that return IResourceDescriptor Modifier and Type Method Description static IResourceDescriptorUrlResourceDescriptor. forClasspathResource(Class<?> clazz, String path, URI uri, Charset charset)Creates a new resource descriptor that reads the data from the given classpath.static IResourceDescriptorUrlResourceDescriptor. forClasspathResource(Class<?> clazz, String path, Charset charset)Creates a new resource descriptor that reads the data from the given classpath.static IResourceDescriptorUrlResourceDescriptor. forClasspathResource(ClassLoader loader, String path, URI uri, Charset charset)Creates a new resource descriptor that reads the data from the given classpath.static IResourceDescriptorUrlResourceDescriptor. forClasspathResource(ClassLoader loader, String path, Charset charset)Creates a new resource descriptor that reads the data from the given classpath.static IResourceDescriptorSupplyingResourceDescriptor. fromByteArray(URI uri, IIOSupplier<byte[]> data, Charset charset)Creates a new resource descriptor for the given URI with the given data.static IResourceDescriptorByteArrayResourceDescriptor. fromString(URI uri, String data, Charset charset)Creates a new resource descriptor for the given URI with the given data.static IResourceDescriptorSupplyingResourceDescriptor. fromString(URI uri, IIOSupplier<String> data, Charset charset)Creates a new resource descriptor for the given URI with the given data.static IResourceDescriptorTransformingResourceDescriptors. streaming(IResourceDescriptor delegate, ISerializableUnaryOperator<InputStream> transformer)Creates a resource descriptor that that delegates to another descriptor, but applies a transformer to the input stream of the resource's content.static IResourceDescriptorTransformingResourceDescriptors. text(IResourceDescriptor delegate, Charset charset, ISerializableUnaryOperator<String> transformer)Creates a resource descriptor that that delegates to another descriptor, but applies a transformer to the plain text content of the resource, using a specifiedCharset.Methods in de.xima.fc.workflow with parameters of type IResourceDescriptor Modifier and Type Method Description static IResourceDescriptorTransformingResourceDescriptors. streaming(IResourceDescriptor delegate, ISerializableUnaryOperator<InputStream> transformer)Creates a resource descriptor that that delegates to another descriptor, but applies a transformer to the input stream of the resource's content.static IResourceDescriptorTransformingResourceDescriptors. text(IResourceDescriptor delegate, Charset charset, ISerializableUnaryOperator<String> transformer)Creates a resource descriptor that that delegates to another descriptor, but applies a transformer to the plain text content of the resource, using a specifiedCharset.Constructors in de.xima.fc.workflow with parameters of type IResourceDescriptor Constructor Description DevResourceDescriptor(String devPath, IResourceDescriptor fallback)Creates a new resource descriptor for the given dev path, falling back to the (usual non-dev resource) when the file at the dev path does not exist.DevResourceDescriptor(String basePath, String devPath, IResourceDescriptor fallback)Creates a new resource descriptor for the given dev path, falling back to the (usual non-dev resource) when the file at the dev path does not exist.WrappedResourceDescriptor(URI uri, IResourceDescriptor content)Creates a wrapped descriptor that reads from another resource descriptor, but allows you to change the URI to a different URI.Constructor parameters in de.xima.fc.workflow with type arguments of type IResourceDescriptor Constructor Description CombinedResourceDescriptor(URI uri, Iterable<IResourceDescriptor> descriptors)Creates a new resource descriptor that reads the data from the given URL. -
Uses of IResourceDescriptor in de.xima.fc.workflow.designer.helper
Methods in de.xima.fc.workflow.designer.helper that return types with arguments of type IResourceDescriptor Modifier and Type Method Description static Set<IResourceDescriptor>ElementPrototypesHelper. collectDescriptors(Set<String> types, IResourceDescriptorLocator locator)Given a set of workflow element types, collects all JavaScript or CSS resources required by element handlers of those types.Method parameters in de.xima.fc.workflow.designer.helper with type arguments of type IResourceDescriptor Modifier and Type Method Description static StringElementPrototypesHelper. concatenateCssResources(Iterable<? extends IResourceDescriptor> descriptors)Concatenates the given CSS resources into a single file.static StringElementPrototypesHelper. concatenateJavaScriptResources(Iterable<? extends IResourceDescriptor> descriptors)Concatenates the given JavaScript resources into a single file. -
Uses of IResourceDescriptor in de.xima.fc.workflow.designer.iface
Methods in de.xima.fc.workflow.designer.iface that return IResourceDescriptor Modifier and Type Method Description IResourceDescriptorIResourceDescriptorLocator. getDescriptor(String type) -
Uses of IResourceDescriptor in de.xima.fc.workflow.designer.logic
Classes in de.xima.fc.workflow.designer.logic that implement IResourceDescriptor Modifier and Type Class Description classDevResourceDescriptorDeprecated.Constructors in de.xima.fc.workflow.designer.logic with parameters of type IResourceDescriptor Constructor Description DevResourceDescriptor(String devPath, IResourceDescriptor fallback)Deprecated.Creates a new resource descriptor for the given dev path, falling back to the (usual non-dev resource) when the file at the dev path does not exist. -
Uses of IResourceDescriptor in de.xima.fc.workflow.designer.registry
Methods in de.xima.fc.workflow.designer.registry that return IResourceDescriptor Modifier and Type Method Description default IResourceDescriptorIBuiltinResourcesHandler. getCascadingStyleSheet(boolean devMode)default IResourceDescriptorIBuiltinResourcesHandler. getJavaScript(boolean devMode) -
Uses of IResourceDescriptor in de.xima.fc.workflow.mixin
Methods in de.xima.fc.workflow.mixin that return IResourceDescriptor Modifier and Type Method Description default IResourceDescriptorIBaseActionClientHandlerNode. getCascadingStyleSheet(Locale locale, boolean devMode)default IResourceDescriptorIBaseConditionClientHandlerNode. getCascadingStyleSheet(Locale locale, boolean devMode)default IResourceDescriptorIBaseDoUntilLoopClientHandlerNode. getCascadingStyleSheet(Locale locale, boolean devMode)default IResourceDescriptorIBaseWhileLoopClientHandlerNode. getCascadingStyleSheet(boolean devMode)default IResourceDescriptorIDefaultClientHandlerTrigger. getCascadingStyleSheet(boolean devMode)default IResourceDescriptorIBaseActionClientHandlerNode. getJavaScript(Locale locale, boolean devMode)default IResourceDescriptorIBaseConditionClientHandlerNode. getJavaScript(Locale locale, boolean devMode)default IResourceDescriptorIBaseDoUntilLoopClientHandlerNode. getJavaScript(Locale locale, boolean devMode)default IResourceDescriptorIBaseWhileLoopClientHandlerNode. getJavaScript(Locale locale, boolean devMode)default IResourceDescriptorIDefaultClientHandlerTrigger. getJavaScript(boolean devMode)
-