Here you can find the source of copyListRaw(List master, List slave)
Parameter | Description |
---|---|
master | a parameter |
slave | a parameter |
@SuppressWarnings({ "unchecked", "rawtypes" }) public static List copyListRaw(List master, List slave)
//package com.java2s; //License from project: Open Source License import java.util.List; public class Main { /**//from w w w . ja va2 s. com * Copia il contenuto della prima lista (master) nella seconda (slave), uno ad uno in modo che vengano eseguiti gli * eventuali <strong>cast impliciti</strong>. * * @param master * @param slave * @return */ @SuppressWarnings({ "unchecked", "rawtypes" }) public static List copyListRaw(List master, List slave) { slave.clear(); for (Object dto : master) { slave.add(dto); } return slave; } }