
com.uchicom.wjm.action.ViewSourceAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wjm Show documentation
Show all versions of wjm Show documentation
JSON Generater from CSV File
The newest version!
// (c) 2017 uchicom
package com.uchicom.wjm.action;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import com.uchicom.wjm.WJMFrame;
/**
* @author uchicom: Shigeki Uchiyama
*
*/
public class ViewSourceAction extends AbstractAction {
private WJMFrame frame;
public ViewSourceAction(WJMFrame frame) {
this.frame = frame;
putValue(NAME, "ソース表示");
}
/* (非 Javadoc)
* @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
*/
@Override
public void actionPerformed(ActionEvent e) {
frame.viewSource();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy