资源简介
生成 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规格书-英文版
相关资源
- ModelGoon-4.4.1-site.zip
- 超市收银系统eclipse access大学课程设计
- 《Hadoop大数据技术》课程设计报告.
- Hadoop.in.Practice.2nd.Edition
- 解决Eclipse的ADT没有NDK选项的问题
- Eclipse编程技术与附CD-ROM光盘
- eclipse_jetty9离线插件
- 在eclipse中使用SVN的实现方法(图文教
- eclipse安卓工程相册、相机选择图片功
- site-1.6.5.zipeclipse 安装 svn 插件
- myeclipse9 注册机(自动生成注册码和激
- eclipse、idea代码模板
- eclipse统计代码工具
- Eclipse4.5汉化包 解压即可汉化
- birt调用存储过程.doc
- Notepad++ ComparePlugin32+64
- ComparePlugin.dll
- ComparePlugin.zip
- MyBatis plugin 3.155 (最新版)
- MyEclipse2018.8.0破解
- myeclipse-2016-CI-6破解文件
- 讯飞人脸识别eclipse版
- ComparePlugin.rar
- 基于Greenplum Hadoop- 分布式平台的大数
- 构建用户自画像视频教程真实企业项
- hdp安装手册
- hadoop技术内幕三件套
- [百度网盘]Hadoop技术内幕 深入解析M
- 基于Eclipse编写的在线支付软件
- Eclipse专业配色方案 - 让编码更舒适高
评论
共有 条评论