Java tutorial
/* * * PROJECT * Name * APS Configuration Admin Web * * Code Version * 0.10.0 * * Description * Edits configurations registered with the APSConfigurationService. * * 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@natusoft.se) * Changes: * 2011-09-18: Created! * */ package se.natusoft.osgi.aps.apsconfigadminweb.gui.vaadin.components; import com.vaadin.ui.Panel; import com.vaadin.ui.VerticalLayout; import se.natusoft.osgi.aps.apsconfigadminweb.gui.vaadin.css.CSS; /** * The left bar containing environments. */ public class LeftBar extends Panel { // // Constructors // public LeftBar() { VerticalLayout vl = new VerticalLayout(); vl.setStyleName(CSS.APS_LEFTBAR); vl.setMargin(true); setContent(vl); } }