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.
24 lines
453 B
24 lines
453 B
package com.fr.design.parameter; |
|
|
|
import com.fr.base.Parameter; |
|
|
|
|
|
public interface ParaDefinitePane { |
|
|
|
Parameter[] getNoRepeatParas(Parameter[] paras); |
|
|
|
void setParameterArray(Parameter[] ps); |
|
|
|
Parameter[] getParameterArray(); |
|
|
|
void refreshParameter(); |
|
|
|
boolean isWithQueryButton(); |
|
|
|
void addingParameter2Editor(Parameter p); |
|
|
|
void addingParameter2EditorWithQueryButton(Parameter p); |
|
|
|
void addingAllParameter2Editor(); |
|
|
|
} |