Java tutorial
//package com.java2s; /******************************************************************************* * Copyright (c) 2009-2018 Weasis Team and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v2.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v20.html * * Contributors: * Nicolas Roduit - initial API and implementation *******************************************************************************/ import javax.swing.JPanel; public class Main { /** * @return A new JPanel * @since 2.5.0 */ public static JPanel newPanel() { return new JPanel(); } }