📄 portletobj.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .////--------------------------// PortletObj//--------------------------// Jerome Bedat 15.12.2000//--------------------------/** * @todo : This class should probably be renamed to PortletBean */package jahiatemplates.org.jahia.portlets_api;public class PortletObj{ private int PortletID; private int PortletSourceID; private int PortletActive; private String PortletTitle; private String PortletIcon; private String PortletBgColor; private String PortletBgImage; private String PortletFont; private String PortletFontSize; private String PortletFontColor; private int PortletSkinID; private int PortletScrollable; private int PortletResizable; private int PortletFixed; private int PortletInnerSpace; private int PortletX; private int PortletY; private int PortletW; private int PortletH; private int PortletColumn; private int PortletRow; /** * PortletObj All Params * * @author Jerome Bedat * */ public PortletObj( int PortletID, int PortletSourceID, int PortletActive, String PortletTitle, String PortletIcon, String PortletBgColor, String PortletBgImage, String PortletFont, String PortletFontSize, String PortletFontColor, int PortletSkinID, int PortletScrollable, int PortletResizable, int PortletFixed, int PortletInnerSpace, int PortletX, int PortletY, int PortletW, int PortletH, int PortletColumn, int PortletRow) { this.PortletID = PortletID; this.PortletSourceID = PortletSourceID; this.PortletActive = PortletActive; this.PortletTitle = PortletTitle; this.PortletIcon = PortletIcon; this.PortletBgColor = PortletBgColor; this.PortletBgImage = PortletBgImage; this.PortletFont = PortletFont; this.PortletFontSize = PortletFontSize; this.PortletFontColor = PortletFontColor; this.PortletSkinID = PortletSkinID; this.PortletScrollable = PortletScrollable; this.PortletResizable = PortletResizable; this.PortletFixed = PortletFixed; this.PortletInnerSpace = PortletInnerSpace; this.PortletX = PortletX; this.PortletY = PortletY; this.PortletW = PortletW; this.PortletH = PortletH; this.PortletX = PortletX; this.PortletColumn = PortletColumn; this.PortletRow = PortletRow; } // end Constructor /** * PortletObj DHTML Params * * @author Jerome Bedat * */ public PortletObj( int PortletID, int PortletSourceID, int PortletActive, String PortletTitle, String PortletIcon, String PortletBgColor, String PortletBgImage, String PortletFont, String PortletFontSize, String PortletFontColor, int PortletSkinID, int PortletScrollable, int PortletResizable, int PortletFixed, int PortletInnerSpace, int PortletX, int PortletY, int PortletW, int PortletH) { this.PortletID = PortletID; this.PortletSourceID = PortletSourceID; this.PortletActive = PortletActive; this.PortletTitle = PortletTitle; this.PortletIcon = PortletIcon; this.PortletBgColor = PortletBgColor; this.PortletBgImage = PortletBgImage; this.PortletFont = PortletFont; this.PortletFontSize = PortletFontSize; this.PortletFontColor = PortletFontColor; this.PortletSkinID = PortletSkinID; this.PortletScrollable = PortletScrollable; this.PortletResizable = PortletResizable; this.PortletFixed = PortletFixed; this.PortletInnerSpace = PortletInnerSpace; this.PortletX = PortletX; this.PortletY = PortletY; this.PortletW = PortletW; this.PortletH = PortletH; this.PortletX = PortletX; this.PortletColumn = 0; this.PortletRow = 0; } // end Constructor /** * PortletObj HTML Params * * @author Jerome Bedat * */ public PortletObj( int PortletID, int PortletSourceID, int PortletActive, String PortletTitle, String PortletIcon, String PortletBgColor, String PortletBgImage, String PortletFont, String PortletFontSize, String PortletFontColor, int PortletInnerSpace, int PortletColumn, int PortletRow) { this.PortletID = PortletID; this.PortletSourceID = PortletSourceID; this.PortletActive = PortletActive; this.PortletTitle = PortletTitle; this.PortletIcon = PortletIcon; this.PortletBgColor = PortletBgColor; this.PortletBgImage = PortletBgImage; this.PortletFont = PortletFont; this.PortletFontSize = PortletFontSize; this.PortletFontColor = PortletFontColor; this.PortletSkinID = 0; this.PortletScrollable = 0; this.PortletResizable = 0; this.PortletFixed = 0; this.PortletInnerSpace = PortletInnerSpace; this.PortletX = 0; this.PortletY = 0; this.PortletW = 0; this.PortletH = 0; this.PortletX = 0; this.PortletColumn = PortletColumn; this.PortletRow = PortletRow; } // end Constructor public int getPortletID() { return PortletID; } public int getPortletSourceID() { return PortletSourceID; } public int getPortletActive() { return PortletActive; } public String getPortletTitle() { return PortletTitle; } public String getPortletIcon() { return PortletIcon; } public String getPortletBgColor() { return PortletBgColor; } public String getPortletBgImage() { return PortletBgImage; } public String getPortletFont() { return PortletFont; } public String getPortletFontSize() { return PortletFontSize; } public String getPortletFontColor() { return PortletFontColor; } public int getPortletSkinID() { return PortletSkinID; } public int getPortletScrollable() { return PortletScrollable; } public int getPortletResizable() { return PortletResizable; } public int getPortletFixed() { return PortletFixed; } public int getPortletInnerSpace() { return PortletInnerSpace; } public int getPortletX() { return PortletX; } public int getPortletY() { return PortletY; } public int getPortletW() { return PortletW; } public int getPortletH() { return PortletH; } public int getPortletColumn() { return PortletColumn; } public int getPortletRow() { return PortletRow; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -