You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
435 B
20 lines
435 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.designer.creator.CRPropertyDescriptor; |
|
import com.fr.stable.fun.mark.Immutable; |
|
|
|
/** |
|
* Created by zpc on 16/7/21. |
|
*/ |
|
public interface ParameterWindowEditorProcessor extends Immutable { |
|
|
|
String MARK_STRING = "ParameterWindowEditorProcessor"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
/** |
|
* 生成属性表 |
|
*/ |
|
CRPropertyDescriptor[] createPropertyDescriptor(Class<?> temp); |
|
} |
|
|
|
|