📄 emfnewwizardpage.java
字号:
package com.cownew.studio.modelDev.wizards;import org.eclipse.jface.viewers.IStructuredSelection;import org.eclipse.ui.dialogs.WizardNewFileCreationPage;public class EMFNewWizardPage extends WizardNewFileCreationPage{ public static String EMFFILEEXT = ".emf"; public EMFNewWizardPage(IStructuredSelection selection) { super("EnitityModelFile wizardPage",selection); setTitle("EnitityModelFile Wizard"); setDescription("This wizard creates a new EnitityModelFile."); } protected boolean validatePage() { if(!getFileName().endsWith(EMFFILEEXT)) { setErrorMessage("File name must ended with "+EMFFILEEXT); return false; } return super.validatePage(); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -