org.wicketstuff.jquery.ui.widget.tabs.SimpleTab Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.wicketstuff.jquery.ui.widget.tabs;
import org.apache.wicket.extensions.markup.html.tabs.AbstractTab;
import org.apache.wicket.markup.html.WebMarkupContainer;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;
import org.wicketstuff.jquery.core.panel.LabelPanel;
/**
* Provides a simple {@link AbstractTab} that embeds a {@link LabelPanel}
*
* @author Sebastien Briquet - sebfz1
* @since 1.2.3
* @since 6.0.1
*/
public class SimpleTab extends AbstractTab
{
private static final long serialVersionUID = 1L;
private final IModel content;
/**
* Constructor
*
* @param title the title of the tab
* @param content the content of the tab
*/
public SimpleTab(String title, String content)
{
this(Model.of(title), Model.of(content));
}
/**
* Constructor
*
* @param title IModel used to represent the title of the tab
* @param content IModel used to represent the content of the tab
*/
public SimpleTab(IModel title, IModel content)
{
super(title);
this.content = content;
}
// Properties //
/**
* Sets the text content of tab
* @param content the text content of tab
*/
public void setContent(String content)
{
this.content.setObject(content);
}
// Methods //
/**
* Gets the {@link LabelPanel} that contains the content supplied in the constructor
* @return the {@link LabelPanel}
*/
@Override
public final WebMarkupContainer getPanel(String panelId)
{
return new LabelPanel(panelId, this.content);
}
}