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.starter;
- /**
- * <code>SysInfoEnum</code> contém algumas informações para a formatação final.
- * Somente para controle mesmo da aplicação.
- *
- *
- * <b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
- *
- * @author RENAN
- * @since 2014
- * @version 1.0 */
- public enum SysInfoEnum {
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysD5("rnxn"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysDCp("Renan Gomes"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysN5("NxnFormatter"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysV5("1.0.0"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysC5("©"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysM5("MD5"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysU5("UTF-8"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysZ5("0"),
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- nxSysO5("1")
- ;
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- private final String i;
- private SysInfoEnum(String i) {
- this.i = i;
- }
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>
- @return !important*/
- public String getSysInfo(){
- return this.i;
- }
- /**<b><u>NÃO MODIFIQUE NENHUMA INFORMAÇÃO DESTE ENUM!</u></b>*/
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement