[Title] remove OptionWrapper
authorBon-Yong Lee <bonyong.lee@samsung.com>
Fri, 24 Aug 2012 08:27:16 +0000 (17:27 +0900)
committerBon-Yong Lee <bonyong.lee@samsung.com>
Fri, 24 Aug 2012 08:27:16 +0000 (17:27 +0900)
[Type]      Enhancement
[Module]    Sub
[Priority]  Minor
[CQ#]       // CQ Issue Number
[Redmine#]  // Redmine Isuue Number
[Problem]   // Problem Description
[Cause]     // Cause Description
[Solution]  // Solution Description
[TestCase]  // Executed the test-target (How to)

org.tizen.common/src/org/tizen/common/core/command/prompter/OptionWrapper.java [deleted file]

diff --git a/org.tizen.common/src/org/tizen/common/core/command/prompter/OptionWrapper.java b/org.tizen.common/src/org/tizen/common/core/command/prompter/OptionWrapper.java
deleted file mode 100644 (file)
index 627aff3..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Common
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: 
- * Ho Namkoong <ho.namkoong@samsung.com>
- * 
- * 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
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * 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.common.core.command.prompter;
-
-/**
- * OptionWrapper.
- * 
- * Prompter should be executed in the UI thread.
- * Therefore, we should call command using Display.getDefault.syncExec.
- * In this case, OptionWrapper is necessary for passing selected Option from UI thread to thread which calls UI thread. {@link Option, Prompter}
- * 
- * @author BonYong Lee{@literal <bonyong.lee@samsung.com>} (S-Core)
- */
-
-public class OptionWrapper{
-    private  Option option;
-    
-    public void setOption(Option option) {
-        this.option = option;
-    }
-    
-    public Option getOption() {
-        return option;
-    }
-}
\ No newline at end of file