com.helger.photon.bootstrap3.pages.AbstractBootstrapWebPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-oton-bootstrap3-pages Show documentation
Show all versions of ph-oton-bootstrap3-pages Show documentation
Default web pages for the ph-oton stack
/**
* Copyright (C) 2014-2017 Philip Helger (www.helger.com)
* philip[at]helger[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.helger.photon.bootstrap3.pages;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.annotation.Nonempty;
import com.helger.commons.annotation.OverrideOnDemand;
import com.helger.commons.text.IMultilingualText;
import com.helger.html.hc.IHCNode;
import com.helger.photon.uicore.page.AbstractWebPage;
import com.helger.photon.uicore.page.IWebPageExecutionContext;
public abstract class AbstractBootstrapWebPage
extends AbstractWebPage
{
public AbstractBootstrapWebPage (@Nonnull @Nonempty final String sID, @Nonnull final String sName)
{
super (sID, getAsMLT (sName), null);
}
public AbstractBootstrapWebPage (@Nonnull @Nonempty final String sID, @Nonnull final IMultilingualText aName)
{
super (sID, aName, null);
}
public AbstractBootstrapWebPage (@Nonnull @Nonempty final String sID,
@Nonnull final String sName,
@Nullable final String sDescription)
{
super (sID, getAsMLT (sName), getAsMLT (sDescription));
}
public AbstractBootstrapWebPage (@Nonnull @Nonempty final String sID,
@Nonnull final IMultilingualText aName,
@Nullable final IMultilingualText aDescription)
{
super (sID, aName, aDescription);
}
@Nonnull
protected BootstrapWebPageUIHandler getUIHandler ()
{
return BootstrapWebPageUIHandler.INSTANCE;
}
@Override
@Nullable
@OverrideOnDemand
public IHCNode getHeaderNode (@Nonnull final WPECTYPE aWPEC)
{
final String sHeaderText = getHeaderText (aWPEC);
return getUIHandler ().createPageHeader (sHeaderText);
}
}