📄 categorybean.java
字号:
//// ____.// __/\ ______| |__/\. _______// __ .____| | \ | +----+ \// _______| /--| | | - \ _ | : - \_________// \\______: :---| : : | : | \________>// |__\---\_____________:______: :____|____:_____\// /_____|//// . . . i n j a h i a w e t r u s t . . .//package org.jahia.data.categories;import java.util.*; // Hashtableimport org.jahia.exceptions.*; // JahiaException/*** * Title : CategoryBean * desc : Bean that describes a JahiaCategory. Jahia has several * categories, in which it can sort its applications, * containers, etc. * Copyright : Copyright Jahia (c) 2002 * Company : Jahia Ltd * @author Eric Vassalli * @version 1.0 */public class CategoryBean { private int index; private String title; private String desc; /*** * constructor * @param index category index * @param title category title * @param desc category desc * */ public CategoryBean( int index, String title, String desc ) { this.index = index; this.title = title; this.desc = desc; } // end constructor /*** * accessor methods * */ public int getIndex() { return index; } public String getTitle() { return title; } public String getdesc() { return desc; } // end accessor methods} // end JahiaCategories
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -