Java tutorial
//package com.java2s; /******************************************************************************* * Copyright (c) 2007 DSource.org and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Bruno Medeiros - initial implementation *******************************************************************************/ import java.util.Collections; import java.util.List; public class Main { /** Sorts given list and returns it. */ public static <E extends Comparable<? super E>, L extends List<E>> L sort(L list) { Collections.sort(list); return list; } }