Interface ComponentDesignDelegate
- All Known Implementing Classes:
- BreakpointContainerDesignDelegate,- ColumnContainerDesignDelegate,- CoordinateContainerDesignDelegate,- FlexContainerDesignDelegate
public interface ComponentDesignDelegate
Component implementors may choose to provide an implementation of this interface in order to provide a more custom
 design experience for their component.
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic interfaceDesignDelegates may contribute buttons to the workspace's toolbar when the the component type is the current deep selection.
- 
Method SummaryModifier and TypeMethodDescriptiondefault JComponentWhen your component becomes super-selected, this panel will be displayed about the component property editor unless the current selection includes a single component, andcreateSelectionEditor(ComponentSelection)returns non-null for that component type.default JComponentcreateSelectionEditor(ComponentSelection selection) When component is selected, this panel will be displayed above the property editor, taking precedence over the deep selection editor.Get a set of the buttons to display when this Component is deep selecteddefault voidinstallDocumentListener(PropertyType scope, DocumentModel documentModel) Provides a chance to listen to document changes for a component being manipulated in the designer.default booleanreturn true for Components which are Piping Enableddefault booleanonTagDrop(DesignAdapter adapter, String indexPath, List<NodeBrowseInfo> tags) Optional handling for when tag(s) are dropped on this component.
- 
Method Details- 
isPipingEnableddefault boolean isPipingEnabled()return true for Components which are Piping Enabled
- 
createDeepSelectionEditorWhen your component becomes super-selected, this panel will be displayed about the component property editor unless the current selection includes a single component, andcreateSelectionEditor(ComponentSelection)returns non-null for that component type.- Returns:
- A component to be used for configuration, or null if you don't need this.
 
- 
deepSelectionToolbarButtons@Nonnull default Optional<ComponentDesignDelegate.DeepSelectToolbar> deepSelectionToolbarButtons(@Nonnull ViewResourceEditor editor) Get a set of the buttons to display when this Component is deep selected- Parameters:
- editor- the current view resource editor
- Returns:
- a set of the buttons to display when this Component is deep selected
 
- 
createSelectionEditorWhen component is selected, this panel will be displayed above the property editor, taking precedence over the deep selection editor.- Parameters:
- selection- details about the current selection
- Returns:
- a component to aid in property configuration
 
- 
onTagDropOptional handling for when tag(s) are dropped on this component.- Parameters:
- adapter- object that allows for manipulating the component's configuration and properties
- indexPath- The path of the component
- tags- The tags that were dropped.
- Returns:
- true if you have handled the tag drop, false if you want the standard tag drop handling
 
- 
installDocumentListenerProvides a chance to listen to document changes for a component being manipulated in the designer.
 
-