view.java

来自「jsf example about book manager」· Java 代码 · 共 16 行

JAVA
16
字号
package com.mycompany.jsf.pl;

import javax.faces.component.UIViewRoot;
import javax.faces.context.FacesContext;

/**
 * This interface must be implemented by classes representing a
 * view for the ClassViewHandler.
 *
 * @author Hans Bergsten, Gefion Software <hans@gefionsoftware.com>
 * @version 1.0
 */
public interface View {
    public UIViewRoot createView(FacesContext context);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?