package lectures.mvc;
import util.annotations.WebDocuments;

import bus.uigen.ObjectEditor;

@WebDocuments({"Lectures/Mvc.pptx", "Lectures/Mvc.pdf", "Videos/Mvc.avi"})
public class ACounter implements Counter {
    int counter = 0;
    public void add (int amount) {
        counter += amount;
    }
    public int getValue() {
        return counter;
    }
    public static void main (String[] args) {
        ObjectEditor.edit(new ACounter());
    }
}