odsoundwaveditor.java
来自「JAVA开源LDAP浏览器jxplorer的源码!」· Java 代码 · 共 32 行
JAVA
32 行
package com.ca.directory.jxplorer.editor;
import com.ca.commons.cbutil.CBIntText;
import java.awt.*;
/**
* Class that extends BaseODMediaEditor to basically customise the display with
* the title 'odSoundWAV' and to add a launch button that when clicked creates
* a temp file and tries to launch the file in the default player.
* @author Trudi.
*/
public class odsoundwaveditor extends baseodmediaeditor
{
/**
* Calls the BaseODMediaEditor constructor, sets the dialog title, the file
* name and the extension.
* @param owner handle to the application frame, used to display dialog boxes.
*/
public odsoundwaveditor(Frame owner)
{
super(owner);
super.setDialogTitle(CBIntText.get("odSoundWAV"));
super.setFileName("odSoundWAV");
super.setExtension(".wav");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?