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

org.jmol.console.JmolLabel Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package org.jmol.console;

import javax.swing.JLabel;

import org.jmol.api.JmolAbstractButton;

public class JmolLabel extends JLabel implements JmolAbstractButton {

  public JmolLabel(String text, int horizontalAlignment) {
    super(text, horizontalAlignment);
  }

  // unused:
  
  @Override
  public String getKey() {
    return null;
  }

  @Override
  public boolean isSelected() {
    return false;
  }

  @Override
  public void setMnemonic(char mnemonic) {
  }

  @Override
  public void addConsoleListener(Object console) {
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy