com.phloc.bootstrap2.ext.BootstrapMenuItemRendererWellHorz Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2014 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.bootstrap2.ext;
import java.util.Locale;
import javax.annotation.Nonnull;
import com.phloc.appbasics.app.menu.IMenuSeparator;
import com.phloc.bootstrap2.CBootstrapCSS;
import com.phloc.html.hc.IHCNode;
import com.phloc.html.hc.html.HCLI;
/**
* A special menu item renderer for the footer area, where the items are
* displayed horizontally
*
* @author Philip Helger
*/
public class BootstrapMenuItemRendererWellHorz extends BootstrapMenuItemRendererWell
{
public BootstrapMenuItemRendererWellHorz (@Nonnull final Locale aContentLocale)
{
super (aContentLocale);
}
@Override
@Nonnull
public IHCNode renderSeparator (@Nonnull final IMenuSeparator aSeparator)
{
return new HCLI ().addChild ("·").addClass (CBootstrapCSS.MUTED);
}
}