public class  上的那段代码, 作用大概类似于 xml配置吧, 这是新语法,请问到哪里去找相关资料/**
 * Copyright 2006 E-Plat, Inc. All rights reserved.
 */
package com.eplat.realty.flow.project.promulgator;import com.eplat.thor.Forwarder;
import com.eplat.thor.ITask;
import com.eplat.thor.Task;/**
 * 输入媒体发布记录任务<p>
 * 装置媒体发布基本信息
 * @author LiCheng
 * @version 1.0
 *
 */
@Task(type = Task.TaskType.PAGE,
inputType =PromulgatorForm.class, 
forwarders = 
       {@Forwarder(key=EntryPromulgatorTask.SAVE_PROMULAGTOR_RECORD ,task=SavePromulgatorTask.class,type=PromulgatorForm.class),
                @Forwarder(key=EntryPromulgatorTask.REMOVE_PROMULAGTOR_RECORD,task=RemovePromulgatorTask.class,type=PromulgatorForm.class)},
processor = EntryPromulgatorProcessor.class)
public class EntryPromulgatorTask implements ITask {
/**
 * 保存媒体记录
 */
public static final String SAVE_PROMULAGTOR_RECORD = "save";
/**
 * 删除媒体记录
 */
public static final String REMOVE_PROMULAGTOR_RECORD = "remove";

private static final long serialVersionUID = -7351986610574096643L;}