Module org.refcodes.web
Package org.refcodes.web
Interface FragmentAccessor.FragmentBuilder<B extends FragmentAccessor.FragmentBuilder<?>>
-
- Type Parameters:
B
- The builder which implements theFragmentAccessor.FragmentBuilder
.
- All Known Implementing Classes:
UrlBuilder
- Enclosing interface:
- FragmentAccessor
public static interface FragmentAccessor.FragmentBuilder<B extends FragmentAccessor.FragmentBuilder<?>>
Provides a mutator for an fragment property.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description B
withFragment(String aFragment)
Sets the fragment to use and returns this builder as of the builder pattern.
-
-
-
Method Detail
-
withFragment
B withFragment(String aFragment)
Sets the fragment to use and returns this builder as of the builder pattern.- Parameters:
aFragment
- The fragment to be stored by the fragment property.- Returns:
- This
FragmentAccessor.FragmentBuilder
instance to continue configuration.
-
-