All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.structurizr.view.SequenceCounter Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package com.structurizr.view;

class SequenceCounter implements Cloneable {

    private SequenceCounter parent;
    private int sequence = 0;
    private boolean incremented = false;

    SequenceCounter() {
    }

    SequenceCounter(SequenceCounter parent) {
        this.parent = parent;
    }

    void increment() {
        this.sequence++;
        incremented = true;
    }

    boolean incremented() {
        return incremented;
    }

    int getSequence() {
        return this.sequence;
    }

    void setSequence(int sequence) {
        this.sequence = sequence;
    }

    SequenceCounter getParent() {
        return this.parent;
    }

    @Override
    public String toString() {
        return "" + getSequence();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy