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

pl.koder95.eme.Visitor Maven / Gradle / Ivy

There is a newer version: 0.4.4
Show newest version
/*
 * Copyright (C) 2018 Kamil Jan Mularski [@koder95]
 *
 * 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 .
 */

package pl.koder95.eme;

/**
 * Interfejs dla wzorca Odwiedzający.
 * Odwiedzający ({@link Visitor}) odwiedza odwiedzanego ({@link Visited}).
 *
 * @author Kamil Jan Mularski [@koder95]
 * @version 0.3.1, 2020-05-20
 * @since 0.3.0
 */
public interface Visitor {

    /**
     * Odwiedzający udaje się do odwiedzanego.
     * @param t odwiedzany obiekt typu {@link Visited}
     */
    void visit(T t);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy