From f00aa0fca2288913dcfd7b998f95d5b795472f65 Mon Sep 17 00:00:00 2001 From: jihye kim Date: Mon, 23 Sep 2013 12:50:20 +0900 Subject: [PATCH] add boilerplate Change-Id: I8eab7e0a369ccb527a3597b4eef4222e7fe0cd21 Signed-off-by: jihye kim --- .../emulator/manager/platform/PlatformList.java | 29 ++++++++++++++++++ .../manager/platform/PlatformStringResources.java | 29 ++++++++++++++++++ .../tizen/emulator/manager/plugin/EMPlugin.java | 29 ++++++++++++++++++ .../emulator/manager/plugin/EMPluginLoader.java | 29 ++++++++++++++++++ .../emulator/manager/plugin/ExtensionItem.java | 29 ++++++++++++++++++ .../manager/plugin/PluginImageResources.java | 29 ++++++++++++++++++ .../manager/plugin/PluginStringResources.java | 29 ++++++++++++++++++ .../emulator/manager/resources/FontResources.java | 35 ++++++++++++---------- .../emulator/manager/ui/detail/TextDetailBox.java | 29 ++++++++++++++++++ .../manager/ui/detail/item/DetailViewItemList.java | 29 ++++++++++++++++++ .../manager/ui/detail/item/IInfoViewItem.java | 29 ++++++++++++++++++ .../manager/ui/detail/item/IItemListFactory.java | 29 ++++++++++++++++++ .../manager/ui/detail/item/IModifyViewItem.java | 29 ++++++++++++++++++ .../emulator/manager/ui/detail/item/IViewItem.java | 29 ++++++++++++++++++ .../manager/ui/detail/item/ItemChangeState.java | 29 ++++++++++++++++++ .../org/tizen/emulator/manager/vms/ILauncher.java | 29 ++++++++++++++++++ .../manager/mobile/ui/detail/ItemListFactory.java | 29 ++++++++++++++++++ .../manager/mobile/ui/widget/VMButtonPainter.java | 29 ++++++++++++++++++ 18 files changed, 512 insertions(+), 16 deletions(-) diff --git a/common-project/src/org/tizen/emulator/manager/platform/PlatformList.java b/common-project/src/org/tizen/emulator/manager/platform/PlatformList.java index 6b2e454..ba36a4b 100644 --- a/common-project/src/org/tizen/emulator/manager/platform/PlatformList.java +++ b/common-project/src/org/tizen/emulator/manager/platform/PlatformList.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.platform; import java.io.File; diff --git a/common-project/src/org/tizen/emulator/manager/platform/PlatformStringResources.java b/common-project/src/org/tizen/emulator/manager/platform/PlatformStringResources.java index fb6548d..63d01e6 100644 --- a/common-project/src/org/tizen/emulator/manager/platform/PlatformStringResources.java +++ b/common-project/src/org/tizen/emulator/manager/platform/PlatformStringResources.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.platform; public class PlatformStringResources { diff --git a/common-project/src/org/tizen/emulator/manager/plugin/EMPlugin.java b/common-project/src/org/tizen/emulator/manager/plugin/EMPlugin.java index eaad87e..d7f1e05 100644 --- a/common-project/src/org/tizen/emulator/manager/plugin/EMPlugin.java +++ b/common-project/src/org/tizen/emulator/manager/plugin/EMPlugin.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.plugin; import java.io.IOException; diff --git a/common-project/src/org/tizen/emulator/manager/plugin/EMPluginLoader.java b/common-project/src/org/tizen/emulator/manager/plugin/EMPluginLoader.java index 3cd7faf..34e00e0 100644 --- a/common-project/src/org/tizen/emulator/manager/plugin/EMPluginLoader.java +++ b/common-project/src/org/tizen/emulator/manager/plugin/EMPluginLoader.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.plugin; import java.io.File; diff --git a/common-project/src/org/tizen/emulator/manager/plugin/ExtensionItem.java b/common-project/src/org/tizen/emulator/manager/plugin/ExtensionItem.java index 68ebbaf..3daed89 100644 --- a/common-project/src/org/tizen/emulator/manager/plugin/ExtensionItem.java +++ b/common-project/src/org/tizen/emulator/manager/plugin/ExtensionItem.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.plugin; import java.io.IOException; diff --git a/common-project/src/org/tizen/emulator/manager/plugin/PluginImageResources.java b/common-project/src/org/tizen/emulator/manager/plugin/PluginImageResources.java index 8e9957b..c71ec9e 100644 --- a/common-project/src/org/tizen/emulator/manager/plugin/PluginImageResources.java +++ b/common-project/src/org/tizen/emulator/manager/plugin/PluginImageResources.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.plugin; import java.io.IOException; diff --git a/common-project/src/org/tizen/emulator/manager/plugin/PluginStringResources.java b/common-project/src/org/tizen/emulator/manager/plugin/PluginStringResources.java index 62953f9..9e1e2bb 100644 --- a/common-project/src/org/tizen/emulator/manager/plugin/PluginStringResources.java +++ b/common-project/src/org/tizen/emulator/manager/plugin/PluginStringResources.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.plugin; import java.util.ArrayList; diff --git a/common-project/src/org/tizen/emulator/manager/resources/FontResources.java b/common-project/src/org/tizen/emulator/manager/resources/FontResources.java index 03daa9c..312744c 100644 --- a/common-project/src/org/tizen/emulator/manager/resources/FontResources.java +++ b/common-project/src/org/tizen/emulator/manager/resources/FontResources.java @@ -1,27 +1,30 @@ /* - * Dynamic Analyzer + * Emulator Manager * - * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. * - * Contact: - * Jooyoul Lee - * Juyoung Kim + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee * - * 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 + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. * - * http://www.apache.org/licenses/LICENSE-2.0 + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * 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. - * * Contributors: * - S-Core Co., Ltd - * + * */ package org.tizen.emulator.manager.resources; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/TextDetailBox.java b/common-project/src/org/tizen/emulator/manager/ui/detail/TextDetailBox.java index c2d3680..88a59b6 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/TextDetailBox.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/TextDetailBox.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail; import org.eclipse.swt.SWT; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/DetailViewItemList.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/DetailViewItemList.java index f4226f7..f8a4fe1 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/DetailViewItemList.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/DetailViewItemList.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; import java.util.ArrayList; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IInfoViewItem.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IInfoViewItem.java index 754319e..d3b732e 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IInfoViewItem.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IInfoViewItem.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; import org.eclipse.swt.widgets.Composite; 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 ea8f626..210ac5f 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 @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; import java.util.ArrayList; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IModifyViewItem.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IModifyViewItem.java index 0ca312a..3bf617d 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IModifyViewItem.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IModifyViewItem.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; import org.eclipse.swt.widgets.Composite; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IViewItem.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IViewItem.java index 005e25b..353bbfb 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/IViewItem.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/IViewItem.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; import java.util.ArrayList; diff --git a/common-project/src/org/tizen/emulator/manager/ui/detail/item/ItemChangeState.java b/common-project/src/org/tizen/emulator/manager/ui/detail/item/ItemChangeState.java index a70f4a8..47c8e79 100644 --- a/common-project/src/org/tizen/emulator/manager/ui/detail/item/ItemChangeState.java +++ b/common-project/src/org/tizen/emulator/manager/ui/detail/item/ItemChangeState.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.ui.detail.item; public enum ItemChangeState { diff --git a/common-project/src/org/tizen/emulator/manager/vms/ILauncher.java b/common-project/src/org/tizen/emulator/manager/vms/ILauncher.java index ffd7365..c051e48 100644 --- a/common-project/src/org/tizen/emulator/manager/vms/ILauncher.java +++ b/common-project/src/org/tizen/emulator/manager/vms/ILauncher.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.vms; import java.util.List; diff --git a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java index f1bc5a1..8109f45 100644 --- a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java +++ b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/detail/ItemListFactory.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.mobile.ui.detail; import java.util.ArrayList; diff --git a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/widget/VMButtonPainter.java b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/widget/VMButtonPainter.java index 11ffe6b..92418d3 100644 --- a/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/widget/VMButtonPainter.java +++ b/plugin-project/mobile-plugin/src/org/tizen/emulator/manager/mobile/ui/widget/VMButtonPainter.java @@ -1,3 +1,32 @@ +/* + * Emulator Manager + * + * Copyright (C) 2013 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * JiHye Kim + * SeokYeon Hwang + * YeongKyoon Lee + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * Contributors: + * - S-Core Co., Ltd + * + */ + package org.tizen.emulator.manager.mobile.ui.widget; import org.eclipse.swt.events.PaintEvent; -- 2.7.4