VAqua.src.org.violetlib.aqua.AquaEditorPaneUI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaqua Show documentation
Show all versions of vaqua Show documentation
An improved native Swing look and feel for macOS
The newest version!
/*
* Copyright (c) 2018 Alan Snyder.
* All rights reserved.
*
* You may not use, copy or modify this file, except in compliance with the license agreement. For details see
* accompanying license terms.
*/
package org.violetlib.aqua;
import javax.swing.*;
import javax.swing.plaf.ComponentUI;
/**
* The UI for JEditorPane.
*/
public class AquaEditorPaneUI extends AquaTextPaneUIBase {
public static ComponentUI createUI(JComponent c) {
return new AquaEditorPaneUI();
}
public AquaEditorPaneUI() {
super(new AquaEditorPaneUIDelegate());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy