Advertisement
xlrnxnlx

owner-2

Sep 21st, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.24 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.models.ext;
  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.  * @author RENAN
  28.  * @since 2014
  29.  * @version 1.0*/
  30.  
  31.  
  32. public enum SecEnum {
  33.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  34.     nD("699659efaa1f6f3d875bfc79fb77f157"),
  35.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  36.     nCP("5101cd4f9a848f1d43cea20f3cdafe37"),
  37.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  38.     nN("9e69f159198b2586bbda44a6b774063b"),
  39.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  40.     nC("6465dad1d31752be3f3283e8f70feef7"),
  41.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  42.     nV("47cd76e43f74bbc2e1baaf194d07e1fa")
  43.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  44.     ;
  45.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  46.     private final String n;
  47.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  48.     private SecEnum(String n) {
  49.         this.n = n;
  50.     }
  51.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
  52.      * @return !important */
  53.     public String get(){
  54.         return this.n;
  55.     }
  56.     /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement