Java tutorial
/* * * PROJECT * Name * APS Web Tools * * Code Version * 0.10.0 * * Description * This provides some utility classes for web applications. * * COPYRIGHTS * Copyright (C) 2012 by Natusoft AB All rights reserved. * * LICENSE * Apache 2.0 (Open Source) * * 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. * * AUTHORS * Tommy Svensson (tommy.svensson@biltmore.se) * Changes: * 2012-04-13: Created! * */ package se.natusoft.osgi.aps.tools.web.vaadin.components; import com.vaadin.ui.Label; /** * This is a component that draws a horizontal line. */ public class HorizontalLine extends Label { /** * Creates a new HorizontalLine. */ public HorizontalLine() { super("<hr/>", Label.CONTENT_XHTML); } }