Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Final NxnFormatter - It's a program created to format the content of topics
- * on VBulletin forums so that the text have a better look. It's an upgrade of
- * Uformatter.
- *
- * Copyright (C) 2014 Renan Gomes (rnxn) at <????@live.com>
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package sys.models.ext;
- /**
- * <code>SysInfoEnum</code> contém algumas informações para a formatação final.
- * Somente para controle mesmo da aplicação.
- *
- * @author RENAN
- * @since 2014
- * @version 1.0*/
- public enum SecEnum {
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nD("699659efaa1f6f3d875bfc79fb77f157"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nCP("5101cd4f9a848f1d43cea20f3cdafe37"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nN("9e69f159198b2586bbda44a6b774063b"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nC("6465dad1d31752be3f3283e8f70feef7"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nV("47cd76e43f74bbc2e1baaf194d07e1fa")
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- ;
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- private final String n;
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- private SecEnum(String n) {
- this.n = n;
- }
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
- * @return !important */
- public String get(){
- return this.n;
- }
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement