Codebase list jd-gui / beb5dc6 api / src / main / java / org / jd / gui / spi / PanelFactory.java
beb5dc6

Tree @beb5dc6 (Download .tar.gz)

PanelFactory.java @beb5dc6raw · history · blame

/*
 * Copyright (c) 2008-2019 Emmanuel Dupuy.
 * This project is distributed under the GPLv3 license.
 * This is a Copyleft license that gives the user the right to use,
 * copy and modify the code freely for non-commercial purposes.
 */

package org.jd.gui.spi;

import org.jd.gui.api.API;
import org.jd.gui.api.feature.UriGettable;
import org.jd.gui.api.model.Container;

import javax.swing.*;

public interface PanelFactory {
	String[] getTypes();
	
	<T extends JComponent & UriGettable> T make(API api, Container container);
}