码迷,mamicode.com
首页 > Web开发 > 详细

org.apache.hadoop.conf-Configurable

时间:2014-10-11 18:09:35      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   sp   div   2014   on   


 

从包名可以看出这个包里面都是配置相关的类;从类名上可以看出这是一个接口,或者说配置类接口。内容很少。


 

 1 package org.apache.hadoop.conf;
 2 
 3 /** Something that may be configured with a {@link Configuration}. */
 4 public interface Configurable {
 5 
 6   /** Set the configuration to be used by this object. */
 7   void setConf(Configuration conf);
 8 
 9   /** Return the configuration used by this object. */
10   Configuration getConf();
11 }

子接口或者实现它的类有:

  bubuko.com,布布扣

其中Configured类就是同包下的,算是最亲的一个孩子


 

没什么好看的


 

org.apache.hadoop.conf-Configurable

标签:style   blog   http   color   io   sp   div   2014   on   

原文地址:http://www.cnblogs.com/admln/p/Configurable.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!