28 lines
574 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package org.jcnc.jnotepad.interfaces;
import java.util.List;
/**
* 控制器接口类
*
* <p>该接口定义了控制器的方法用于打开关联文件并创建TextArea。</p>
*
* @author 许轲
*/
public interface ControllerAble {
/**
* 打开关联文件并创建 TextArea。
*
* @param rawParameters 原始参数列表
*/
void openAssociatedFileAndCreateTextArea(List<String> rawParameters);
/**
* 打开关联文件。
*
* @param filePath 文件路径
*/
void openAssociatedFile(String filePath);
}