diff options
author | Jihoon Song <jihoon80.song@samsung.com> | 2013-04-16 15:08:27 +0900 |
---|---|---|
committer | Jihoon Song <jihoon80.song@samsung.com> | 2013-04-16 15:08:27 +0900 |
commit | 9668484e71b9e30fb805af7f26a6222ad984ca51 (patch) | |
tree | 261f1f82b9bfe34a92e3f4c2386fbe74b809680f /org.tizen.common.project | |
parent | 15cdb821390abb0ba8781c8f36f8564f5f1521f7 (diff) | |
download | common-eplugin-9668484e71b9e30fb805af7f26a6222ad984ca51.tar.gz common-eplugin-9668484e71b9e30fb805af7f26a6222ad984ca51.tar.bz2 common-eplugin-9668484e71b9e30fb805af7f26a6222ad984ca51.zip |
[Title] common-eplugin: added missing boiler plates
[Desc.]
[Issue]
Change-Id: I965aaba68527bc4be0233b26c9080f5240fa2c99
Diffstat (limited to 'org.tizen.common.project')
3 files changed, 81 insertions, 0 deletions
diff --git a/org.tizen.common.project/src/org/tizen/common/project/Activator.java b/org.tizen.common.project/src/org/tizen/common/project/Activator.java index e025216a1..a24e42baf 100644 --- a/org.tizen.common.project/src/org/tizen/common/project/Activator.java +++ b/org.tizen.common.project/src/org/tizen/common/project/Activator.java @@ -1,3 +1,30 @@ +/* + * Common + * + * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * NamKoong Ho <ho.namkoong@samsung.com> + * Jihoon Song <jihoon80.song@samsung.com> + * BonYong Lee <bonyong.lee@samsung.com> + * Kangho Kim <kh5325.kim@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.project; import org.eclipse.ui.plugin.AbstractUIPlugin; diff --git a/org.tizen.common.project/src/org/tizen/common/project/CommonProjectConstants.java b/org.tizen.common.project/src/org/tizen/common/project/CommonProjectConstants.java index 33420c9ee..502834768 100644 --- a/org.tizen.common.project/src/org/tizen/common/project/CommonProjectConstants.java +++ b/org.tizen.common.project/src/org/tizen/common/project/CommonProjectConstants.java @@ -1,3 +1,30 @@ +/* + * Common + * + * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * NamKoong Ho <ho.namkoong@samsung.com> + * Jihoon Song <jihoon80.song@samsung.com> + * BonYong Lee <bonyong.lee@samsung.com> + * Kangho Kim <kh5325.kim@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.project; public final class CommonProjectConstants { diff --git a/org.tizen.common.project/src/org/tizen/common/project/util/Messages.java b/org.tizen.common.project/src/org/tizen/common/project/util/Messages.java index 19f403812..3355b7fe2 100644 --- a/org.tizen.common.project/src/org/tizen/common/project/util/Messages.java +++ b/org.tizen.common.project/src/org/tizen/common/project/util/Messages.java @@ -1,3 +1,30 @@ +/* + * Common + * + * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. + * + * Contact: + * NamKoong Ho <ho.namkoong@samsung.com> + * Jihoon Song <jihoon80.song@samsung.com> + * BonYong Lee <bonyong.lee@samsung.com> + * Kangho Kim <kh5325.kim@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.project.util; import org.eclipse.osgi.util.NLS; |