Package org.refcodes.mixin
Interface ArgumentsAccessor<ARG>
-
- Type Parameters:
ARG- The type of the arguments to be used.
- All Known Subinterfaces:
ArgumentsAccessor.ArgumentsProperty<ARG>
public interface ArgumentsAccessor<ARG>Provides access to a arguments property for e.g. key / arguments pair.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceArgumentsAccessor.ArgumentsMutator<ARG>Extends theArgumentsAccessorwith a setter method.static interfaceArgumentsAccessor.ArgumentsProperty<ARG>Extends theArgumentsAccessorwith a setter method.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ARG[]getArguments()Retrieves the arguments from the arguments property.
-
-
-
Method Detail
-
getArguments
ARG[] getArguments()
Retrieves the arguments from the arguments property.- Returns:
- The arguments stored by the arguments property.
-
-