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.
35 lines
821 B
35 lines
821 B
7 years ago
|
package com.fr.plugin.present.fun;
|
||
|
|
||
|
import com.fr.base.present.AbstractPresent;
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.script.Calculator;
|
||
|
import com.fr.stable.ColumnRow;
|
||
|
import com.fr.stable.xml.XMLPrintWriter;
|
||
|
import com.fr.stable.xml.XMLableReader;
|
||
|
|
||
|
/**
|
||
|
* @author richie
|
||
|
* @date 2015-05-24
|
||
|
* @since 8.0
|
||
|
*/
|
||
|
@EnableMetrics
|
||
7 years ago
|
public class StarPresent extends AbstractPresent {
|
||
7 years ago
|
|
||
|
@Override
|
||
|
@Focus(id = "com.fr.plugin.present.demo", text = "", source = Original.PLUGIN)
|
||
|
public Object present(Object value, Calculator calculator, ColumnRow cr) {
|
||
|
return "aaa";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void readXML(XMLableReader reader) {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void writeXML(XMLPrintWriter writer) {
|
||
|
|
||
|
}
|
||
|
}
|