Advertisement
xlrnxnlx

owner-1

Sep 21st, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.44 KB | None | 0 0
  1. /*
  2.  * Final NxnFormatter - It's a program created to format the content of topics
  3.  * on VBulletin forums so that the text have a better look. It's an upgrade of
  4.  * Uformatter.
  5.  *
  6.  * Copyright (C) 2014 Renan Gomes (rnxn) at <????@live.com>
  7.  *
  8.  * This program is free software: you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation, either version 3 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  */
  20.  
  21. package sys.starter;
  22.  
  23. /**
  24.  * <code>SysInfoEnum</code> contém algumas informações para a formatação final.
  25.  * Somente para controle mesmo da aplicação.
  26.  *
  27.  *
  28.  * <b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
  29.  *
  30.  * @author RENAN
  31.  * @since 2014
  32.  * @version 1.0 */
  33.  
  34. public enum SysInfoEnum {
  35.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  36.     nxSysD5("rnxn"),
  37.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  38.     nxSysDCp("Renan Gomes"),
  39.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  40.     nxSysN5("NxnFormatter"),
  41.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  42.     nxSysV5("1.0.0"),
  43.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  44.     nxSysC5("©"),
  45.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  46.     nxSysM5("MD5"),
  47.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  48.     nxSysU5("UTF-8"),
  49.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  50.     nxSysZ5("0"),
  51.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  52.     nxSysO5("1")
  53.     ;
  54.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  55.     private final String i;
  56.     private SysInfoEnum(String i) {
  57.         this.i = i;
  58.     }
  59.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
  60.      @return !important*/
  61.     public String getSysInfo(){
  62.         return this.i;
  63.     }
  64.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement