contentdecorator.java
来自「to disp contents of a db」· Java 代码 · 共 70 行
JAVA
70 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.wwr.content;import java.util.ArrayList;import org.displaytag.decorator.TableDecorator;/** * * @author Administrator */public class ContentDecorator extends TableDecorator{ private String sub_type, status, insert_Date, expiry_date, execute_date, description, content_type; private int content_id; private ArrayList ContenList; public ArrayList getContenList() { ServContentList scl=(ServContentList)getCurrentRowObject(); return null; } /*public int getContent_id() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getContent_id(); } public String getContent_type() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getContent_type(); } public String getDescription() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getDescription(); } public String getExecute_date() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getExecute_date(); } public String getExpiry_date() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getExpiry_date(); } public String getInsert_Date() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getInsert_Date(); } public String getStatus() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getStatus(); } public String getSub_type() { ServContentList scl=(ServContentList)getCurrentRowObject(); return scl.getSub_type(); } */ }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?