查看本类的 API文档回源码主页即时通讯网 - 即时通讯开发者社区!
1   // DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS
2   package org.jboss.netty.util;
3   /**
4    * Provides the version information of Netty.
5    * @apiviz.landmark
6    */
7   @SuppressWarnings("all")
8   public final class Version {
9    /** The version identifier. */
10   public static final String ID = "3.10.5.Final-97523c3";
11   /** Prints out the version identifier to stdout. */
12   public static void main(String[] args) { System.out.println(ID); }
13   private Version() { }
14  }