Nicholas.Jee
3 years ago
7 changed files with 92 additions and 2 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,29 @@ |
|||||||
|
package com.fr.plugin.tptj.tabledata.factory.demo; |
||||||
|
|
||||||
|
import com.fr.general.data.TableDataException; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
import com.tptj.plugin.hg.impl.AbstractFilter; |
||||||
|
import com.tptj.plugin.hg.stable.SimpleDataModel; |
||||||
|
|
||||||
|
public class DemoFilter extends AbstractFilter { |
||||||
|
@Override |
||||||
|
public SimpleDataModel doAction(SimpleDataModel simpleDataModel, String s) { |
||||||
|
try { |
||||||
|
simpleDataModel.removeColumn(simpleDataModel.getColumnCount() - 1); |
||||||
|
} catch (TableDataException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e, "{}", e.getMessage()); |
||||||
|
} |
||||||
|
return simpleDataModel; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getName() { |
||||||
|
return "Demo_Filter"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getDefaultConfig() { |
||||||
|
return StringUtils.EMPTY; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,26 @@ |
|||||||
|
package com.fr.plugin.tptj.tabledata.factory.demo; |
||||||
|
|
||||||
|
import com.tptj.plugin.hg.impl.AbstractFormatter; |
||||||
|
|
||||||
|
public class DemoFormatter extends AbstractFormatter { |
||||||
|
@Override |
||||||
|
public Object format(Object o, String s) { |
||||||
|
String data = (String) o; |
||||||
|
String[] lines = data.split("\n"); |
||||||
|
StringBuilder result = new StringBuilder(); |
||||||
|
for (int i = 1; i < lines.length; i++) { |
||||||
|
result.append(lines[i]).append("\n"); |
||||||
|
} |
||||||
|
return result.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getName() { |
||||||
|
return "Demo_Formatter"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getDefaultConfig() { |
||||||
|
return ""; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
package com.fr.plugin.tptj.tabledata.factory.demo; |
||||||
|
|
||||||
|
import com.fr.base.Parameter; |
||||||
|
import com.fr.json.JSONObject; |
||||||
|
import com.fr.script.Calculator; |
||||||
|
import com.fr.stable.ParameterProvider; |
||||||
|
import com.tptj.plugin.hg.impl.AbstractPreprocessor; |
||||||
|
|
||||||
|
public class DemoPreprocessor extends AbstractPreprocessor { |
||||||
|
@Override |
||||||
|
public ParameterProvider[] process(Calculator calculator, String s) { |
||||||
|
|
||||||
|
JSONObject jo = new JSONObject(s); |
||||||
|
ParameterProvider[] results = new ParameterProvider[1]; |
||||||
|
results[0] = new Parameter("token", jo.get("token")); |
||||||
|
//jo.get("token");
|
||||||
|
return results; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getName() { |
||||||
|
return "Demo_PreProcess"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getDefaultConfig() { |
||||||
|
return "{\n" + |
||||||
|
" token:token\n" + |
||||||
|
"}"; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue