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

editor.ClearablePanel Maven / Gradle / Ivy

The newest version!
package editor;

import editor.util.IDisposable;

import javax.swing.*;
import java.awt.*;

/**
 */
public abstract class ClearablePanel extends JPanel implements IDisposable
{
  public ClearablePanel()
  {
    super();
  }

  public ClearablePanel( LayoutManager layout )
  {
    super( layout );
  }

  public abstract void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy