source: sample/hadoop-0.17/tw/org/nchc/demo/ExampleDriver.java @ 20

Last change on this file since 20 was 20, checked in by waue, 16 years ago

將改完的 hadoop 0.17版package 放來備份
目前繼續開發 hadoop 0.16 + hbase 1.3

File size: 1.3 KB
Line 
1/**
2 * Copyright 2007 The Apache Software Foundation
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements.  See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership.  The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License.  You may obtain a copy of the License at
11 *
12 *     http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 */
20package tw.org.nchc.demo;
21
22import org.apache.hadoop.util.ProgramDriver;
23
24/**
25 * A description of an example program based on its class and a human-readable
26 * description.
27 */
28public class ExampleDriver {
29
30  public static void main(String argv[]) {
31    ProgramDriver pgd = new ProgramDriver();
32    try {
33      pgd.addClass("logfetcher", LogFetcher.class, "Log File Fetcher.");
34      pgd.driver(argv);
35    } catch (Throwable e) {
36      e.printStackTrace();
37    }
38  }
39}
Note: See TracBrowser for help on using the repository browser.