/* * Copyright (C) 2011 Peransin Nicolas. All rights reserved. * Use is subject to license terms. */ package org.mypsycho.swing.app; /** * Class for ... * <p>Details</p> * * @author Peransin Nicolas * */ public interface ApplicationComponent { /** * Invoked by the application once the application manage the component. * * @param app */ void register(Application app); }