From: minkee.lee Date: Fri, 8 Aug 2014 12:06:39 +0000 (+0900) Subject: Property: Refactoring interface ItemListFactory. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0760419e2bebb9460504e770376b8a02736de6db;p=sdk%2Femulator%2Femulator-manager.git Property: Refactoring interface ItemListFactory. Change-Id: I6750481bdd22adc58edf76677b3138bf6b4c8894 Signed-off-by: minkee.lee --- diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IItemListFactory.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IItemListFactory.java index af2408e..8a8b0d2 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IItemListFactory.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IItemListFactory.java @@ -29,15 +29,11 @@ package org.tizen.emulator.manager.ui.detail.item; -import java.util.ArrayList; import java.util.List; -import org.tizen.emulator.manager.vms.xml.device.DeviceItemList; import org.tizen.emulator.manager.vms.xml.template.ItemList; public interface IItemListFactory { - public ArrayList getInfoItemList(ItemList template); - public ArrayList getModifyItemList(ItemList template); public void makeItemList(List itemList, ItemList template); public void makeCustomItemList(List itemList, List templateList);