richie
5 years ago
9 changed files with 65 additions and 21 deletions
@ -1,4 +1,4 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
package com.fanruan.api.design.ui.action; |
||||||
|
|
||||||
import java.awt.event.ActionEvent; |
import java.awt.event.ActionEvent; |
||||||
|
|
@ -1,4 +1,4 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
package com.fanruan.api.design.ui.action; |
||||||
|
|
||||||
import java.awt.event.ActionEvent; |
import java.awt.event.ActionEvent; |
||||||
|
|
@ -1,8 +0,0 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
|
||||||
|
|
||||||
public class BasicPane extends com.fr.design.dialog.BasicPane{ |
|
||||||
@Override |
|
||||||
protected String title4PopupWindow() { |
|
||||||
return ""; |
|
||||||
} |
|
||||||
} |
|
@ -1,4 +0,0 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
|
||||||
|
|
||||||
public class ParameterTableModel extends com.fr.design.gui.itableeditorpane.ParameterTableModel{ |
|
||||||
} |
|
@ -1,5 +1,5 @@ |
|||||||
package com.fanruan.api.design.ui.component; |
package com.fanruan.api.design.ui.component; |
||||||
|
|
||||||
public class UIIntNumberField extends com.fr.design.gui.itextfield.UIIntNumberField{ |
public class UIIntNumberField extends com.fr.design.gui.itextfield.UIIntNumberField { |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,5 @@ |
|||||||
|
package com.fanruan.api.design.ui.container; |
||||||
|
|
||||||
|
public abstract class BasicPane extends com.fr.design.dialog.BasicPane { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package com.fanruan.api.design.ui.editor; |
||||||
|
|
||||||
|
import com.fr.design.editor.editor.Editor; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author richie |
||||||
|
* @version 10.0 |
||||||
|
* Created by richie on 2019-08-27 |
||||||
|
* 多指选择器 |
||||||
|
* com.fr.design.editor.editor.Editor是一个可靠的API类 |
||||||
|
*/ |
||||||
|
public class ValueEditorPane extends com.fr.design.editor.ValueEditorPane { |
||||||
|
|
||||||
|
public ValueEditorPane(Editor[] editors) { |
||||||
|
super(editors); |
||||||
|
} |
||||||
|
|
||||||
|
public ValueEditorPane(Editor[] editors, String popupName, String textEditorValue) { |
||||||
|
super(editors, popupName, textEditorValue); |
||||||
|
} |
||||||
|
|
||||||
|
public ValueEditorPane(Editor[] editors, String popupName, String textEditorValue, int centerPaneWidth) { |
||||||
|
super(editors, popupName, textEditorValue, centerPaneWidth); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
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); |
||||||
|
} |
||||||
|
} |
@ -1,18 +1,16 @@ |
|||||||
package com.fanruan.api.xml.xml.component; |
package com.fanruan.api.xml.component; |
||||||
|
|
||||||
import com.fr.stable.xml.XMLPrintWriter; |
import com.fr.stable.xml.XMLPrintWriter; |
||||||
import com.fr.stable.xml.XMLableReader; |
import com.fr.stable.xml.XMLableReader; |
||||||
|
|
||||||
public class XMLFileManager extends com.fr.file.XMLFileManager { |
public abstract class XMLFileManager extends com.fr.file.XMLFileManager { |
||||||
@Override |
|
||||||
public String fileName() { |
|
||||||
return ""; |
|
||||||
} |
|
||||||
@Override |
@Override |
||||||
public void writeXML(XMLPrintWriter writer) { |
public void writeXML(XMLPrintWriter writer) { |
||||||
|
|
||||||
} |
} |
||||||
@Override |
@Override |
||||||
public void readXML(XMLableReader reader) { |
public void readXML(XMLableReader reader) { |
||||||
|
|
||||||
} |
} |
||||||
} |
} |
Loading…
Reference in new issue