Schnittstelle IMutableElement

Alle Superschnittstellen:
IElement, Resettable
Alle bekannten Unterschnittstellen:
IAccordion, IAccordionStyle, IButton, IButtonStyle, ICheckbox, ICheckboxStyle, IComponent, IComponentStyle, IContainer<C,S>, IControl<C,S>, IControlHeadStyle<S>, IControlStyle<S>, IDropdownMenu, IDropdownMenuStyle, IGrid, IGridStyle, IHorizontalStack, IHorizontalStackStyle, IImageControl, IImageControlStyle, IItemMenu<M,S>, IItemMenuItem<I>, IItemMenuStyle<S>, ILabel, ILabelStyle, ILayer<L>, ILinearContainer<C,S>, ILinearContainerStyle<S>, ILink, ILinkStyle, IMultiStateConfiguration<C,S>, IRespondingMutableElement<E>, ISingleContainer, ISingleContainerStyle, IStylableElement<E>, IStyleElement<E>, ITabContainer, ITabContainerStyle, ITextbox, ITextboxStyle, IUploader, IUploaderStyle, IValidationLabel, IValidationLabelStyle, IVerticalStack, IVerticalStackStyle, IWebGui<G>
Alle bekannten Implementierungsklassen:
AbstractComponent, AbstractContainer, AbstractItemMenu, BaseComponentStyle, Button, ButtonStyle, Component, ComponentWithAdapterFactory, Control, ControlStyle, DropdownMenu, DropdownMenuStyle, FloatContainer, FloatContainerStyle, Grid, GridCell, GridStyle, HorizontalStack, HorizontalStackStyle, ImageControl, ImageControlStyle, ItemMenuItem, ItemMenuStyle, Label, LabelStyle, Layer, LinearContainer, LinearContainerStyle, Link, LinkStyle, MultiStateConfiguration, MutableElement, MutableImage, SingleContainer, SingleContainerStyle, StylableElement, StyleElement, Textbox, TextboxStyle, Uploader, UploaderStyle, ValidationLabel, ValidationLabelStyle, VerticalStack, VerticalStackStyle, WebApplicationComponent, WebGui

public interface IMutableElement extends Resettable, IElement
A IMutableElement is a IElement. The attributes of a IMutableElement can be mutated separately. The attributes of a IMutableElement can be reset together.
Version:
2017-01-01
Autor:
Silvan Wyss
  • Methodendetails

    • addOrChangeAttribute

      void addOrChangeAttribute(INode<?> attribute)
      Adds or changes the given attribute to the current IMutableElement.
      Parameter:
      attribute -
    • addOrChangeAttribute

      default void addOrChangeAttribute(INode<?> attribute, INode<?>... attributes)
      Adds or changes the given attributes to the current IMutableElement.
      Parameter:
      attribute -
      attributes -
      Löst aus:
      RuntimeException - if one of the given attributes is not valid.
    • addOrChangeAttribute

      void addOrChangeAttribute(String attribute, String... attributes)
      Adds or changes the given attributes to the current IMutableElement.
      Parameter:
      attribute -
      attributes -
      Löst aus:
      RuntimeException - if one of the given attributes is not valid.
    • addOrChangeAttributes

      default void addOrChangeAttributes(Iterable<? extends INode<?>> attributes)
      Adds or changes the given attributes to the current IMutableElement.
      Parameter:
      attributes -
      Löst aus:
      RuntimeException - if one of the given attributes is not valid.
    • resetFromAttributes

      default void resetFromAttributes(Iterable<? extends INode<?>> attributes)
      Resets the current IMutableElement from the given attributes.
      Parameter:
      attributes -
      Löst aus:
      RuntimeException - if one of the given attributes is not valid.
    • resetFromSpecification

      default void resetFromSpecification(INode<?> specification)
      Resets the current IMutableElement from the given specification.
      Parameter:
      specification -
      Löst aus:
      RuntimeException - if the given specification is not valid.