convex.gui.wallet.SettingsPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-gui Show documentation
Show all versions of convex-gui Show documentation
Convex desktop GUI and test applications
The newest version!
package convex.gui.wallet;
import javax.swing.JPanel;
import convex.api.Convex;
@SuppressWarnings("serial")
public class SettingsPanel extends JPanel {
protected Convex convex;
public SettingsPanel(Convex convex) {
this.convex=convex;
}
}