package the.bytecode.club.bytecodeviewer.util; /*************************************************************************** * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Copyright (C) 2014 Kalen 'Konloch' Kinloch - http://bytecodeviewer.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 . * ***************************************************************************/ /** * @author Hupan * @since 11/20/2019 */ class SeqAndCount { Integer seq; Integer count; public static SeqAndCount init() { SeqAndCount seqAndCount = new SeqAndCount(); seqAndCount.setSeq(1); seqAndCount.setCount(1); return seqAndCount; } public SeqAndCount incrSeq() { seq++; return this; } public SeqAndCount incrCount() { count++; return this; } public SeqAndCount decrCount() { count--; return this; } public SeqAndCount incrSeqAndCount() { seq++; count++; return this; } public Integer getSeq() { return seq; } public void setSeq(Integer seq) { this.seq = seq; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } }