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.
28 lines
693 B
28 lines
693 B
package com.fanruan.api.design.ui.model; |
|
|
|
|
|
import com.fanruan.api.design.ui.editor.ValueEditorPane; |
|
|
|
import java.awt.*; |
|
|
|
/** |
|
* 表格模型 |
|
*/ |
|
public class ParameterTableModel extends com.fr.design.gui.itableeditorpane.ParameterTableModel { |
|
|
|
public ParameterTableModel() { |
|
super(); |
|
} |
|
|
|
public ParameterTableModel(int paraUseType) { |
|
super(paraUseType); |
|
} |
|
|
|
public ParameterTableModel(int paraUseType, Component component) { |
|
super(paraUseType, component); |
|
} |
|
|
|
public ParameterTableModel(ValueEditorPane valueEditorPane, ValueEditorPane valueRenderPane, Component component) { |
|
super(valueEditorPane, valueRenderPane, component); |
|
} |
|
}
|
|
|