资源简介
生成 hadoop-eclipse-plugin-2.x 插件工具代码,参照文件夹中的 readme 文件生成自己对应的hadoop版本插件
代码片段和文件信息
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.hadoop.eclipse;
import org.apache.hadoop.eclipse.servers.ServerRegistry;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends AbstractUIPlugin {
/**
* The plug-in ID
*/
public static final String PLUGIN_ID = “org.apache.hadoop.eclipse“;
/**
* The shared unique instance (singleton)
*/
private static Activator plugin;
/**
* Constructor
*/
public Activator() {
synchronized (Activator.class) {
if (plugin != null) {
// Not a singleton!?
throw new RuntimeException(“Activator for “ + PLUGIN_ID
+ “ is not a singleton“);
}
plugin = this;
}
}
/* @inheritDoc */
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
}
/* @inheritDoc */
@Override
public void stop(BundleContext context) throws Exception {
ServerRegistry.getInstance().dispose();
plugin = null;
super.stop(context);
}
/**
* Returns the shared unique instance (singleton)
*
* @return the shared unique instance (singleton)
*/
public static Activator getDefault() {
return plugin;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 65 2017-07-12 03:28 .gitattributes
文件 10525 2017-07-12 03:28 ivy.xm
目录 0 2017-11-08 10:27 ivy\
文件 3443 2017-07-12 03:28 ivy\hadoop-client-pom-template.xm
文件 4661 2017-07-12 03:28 ivy\hadoop-core-pom-template.xm
文件 8118 2017-07-12 03:28 ivy\hadoop-core.pom
文件 1427 2017-07-12 03:28 ivy\hadoop-examples-pom-template.xm
文件 1814 2017-07-12 03:28 ivy\hadoop-minicluster-pom-template.xm
文件 1432 2017-07-12 03:28 ivy\hadoop-streaming-pom-template.xm
文件 2051 2017-07-12 03:28 ivy\hadoop-test-pom-template.xm
文件 1424 2017-07-12 03:28 ivy\hadoop-tools-pom-template.xm
文件 910990 2017-07-12 03:28 ivy\ivy-2.1.0.jar
文件 3320 2017-07-12 03:28 ivy\ivysettings.xm
文件 2448 2017-07-12 03:28 ivy\libraries.properties
文件 1580 2017-07-12 03:28 README.md
目录 0 2017-11-08 11:17 release\
目录 0 2017-11-08 10:27 src\
目录 0 2017-11-08 10:27 src\contrib\
文件 22217 2017-07-12 03:28 src\contrib\build-contrib.xm
文件 4229 2017-07-12 03:28 src\contrib\build.xm
目录 0 2017-11-08 10:27 src\contrib\eclipse-plugin\
文件 647 2017-07-12 03:28 src\contrib\eclipse-plugin\.project
目录 0 2017-11-08 10:27 src\contrib\eclipse-plugin\.settings\
文件 21972 2017-07-12 03:28 src\contrib\eclipse-plugin\.settings\org.eclipse.jdt.core.prefs
文件 300 2017-07-12 03:28 src\contrib\eclipse-plugin\.settings\org.eclipse.jdt.ui.prefs
文件 1803 2017-07-12 03:28 src\contrib\eclipse-plugin\.settings\org.eclipse.wst.validation.prefs
文件 735 2017-07-12 03:28 src\contrib\eclipse-plugin\build.properties
文件 7776 2017-07-12 03:28 src\contrib\eclipse-plugin\build.xm
文件 3057 2017-07-12 03:28 src\contrib\eclipse-plugin\build.xm
文件 1938 2017-07-12 03:28 src\contrib\eclipse-plugin\ivy.xm
目录 0 2017-11-08 10:27 src\contrib\eclipse-plugin\ivy\
............此处省略141个文件信息
- 上一篇:labview与Opencv 人眼识别
- 下一篇:W78E516D规格书-英文版
相关资源
- 广工 虚拟化与云计算课程报告 Hadoo
- Hadoop Security Protecting Your Big Data Platf
- 安全多方计算之解决百万富翁问题的
- 在Eclipse下编译Keil MDK工程
- hadoop2.9.1 winutils.exe hadoop.dll
- Big_Data_Analytics_with_Spark_and_Hadoop-Packt
- SketchUp6ESRI
- CDH5 Hadoop集群完全离线安装说明
- 基于Hadoop的档案共享系统毕业设计含
- Hadoop编程课程设计项目.zip
- 超详细的Win10+MyEclipse2018+Tomcat9.0环境搭
- hadoop培训ppt资料
- zookeeper eclipse plugin
- Eclipse+goclipse(gocode+guru+godef)
- Cloudera-Manager-中文手册
- 百度OCR的eclipse移植版带build.gradle文件
- Qt5 for windows plugin dll
- findbugs 代码检查 eclipse插件 3.0.0版本
- Hadoop.The.Definitive.Guide.4th.Edition.2015.3
- MyEclipse开发的仓库管理系统
- 厦门大学林子雨编著-基于Hadoop的数据
- Hadoop权威指南第四版-书签文字版.pd
- steamVR plugin1.2.1,配5.6可用
- MyEclipse_10破解包
- myeclise-2017-CI-8破解文件
- 大数据网络日志数据分析样本
- Eclipse快捷键壁纸大图
- Eclipse完整版课程设计
- Hadoop 2.7.1 中文文档
- hadoop 安装配置说明,以及相关实验等
评论
共有 条评论