⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 manager.java

📁 XDoclet 使自动生成部署描述符更为便利。XDoclet 是一个代码生成实用程序
💻 JAVA
字号:
package test.ejb.jdo;

import java.util.Vector;

/**
 * A simple test class to test for generation of Castor's mapping.xml.
 *
 * @castor.class
 *    extends="test.ejb.jdo.Staff"
 *    xml="manager"
 * @author Dmitri Colebatch (dim@bigpond.net.au)
 */
public class Manager extends Staff
{
    private Vector employees;

    /**
     * @castor.field collection="vector" type="test.ejb.jdo.Staff"
     */
    public Vector getEmployees()
    {
        return employees;
    }

    public void setEmployees(Vector employees)
    {
        this.employees = employees;
    }
}

⌨️ 快捷键说明

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