com.jwebmp.plugins.verticaltimeline.VerticalTimeline Maven / Gradle / Ivy
Show all versions of jwebmp-vertical-timeline-css Show documentation
/*
* Copyright (C) 2017 GedMarc
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.jwebmp.plugins.verticaltimeline;
import com.jwebmp.core.base.html.Div;
/**
* An implementation of the Responsive Vertical Timeline - https://codyhouse.co/gem/vertical-timeline/
*
*
*
* @author GedMarc
* @version 1.0
* @since 24 October 2016
*/
public class VerticalTimeline
extends Div
{
private VerticalTimelineFeature feature;
/**
* Constructs a new instance of the vertical timeline
*/
public VerticalTimeline()
{
addFeature(getFeature());
setTag("section");
addClass("verticalTimeline");
addClass("cd-container");
}
public final VerticalTimelineFeature getFeature()
{
if (feature == null)
{
feature = new VerticalTimelineFeature(this);
}
return feature;
}
/**
* Returns the vertical time line with only the fields relevant
*
* @return
*/
public VerticalTimeline asVerticalTimeline()
{
return this;
}
@Override
public VerticalTimelineOptions getOptions()
{
return getFeature().getOptions();
}
@Override
public int hashCode()
{
return super.hashCode();
}
@Override
public boolean equals(Object o)
{
return super.equals(o);
}
}