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
736 B
28 lines
736 B
9 years ago
|
package com.fr.plugin.cell.highlight.fun;
|
||
|
|
||
|
import com.fr.plugin.cell.highlight.MyConstants;
|
||
|
import com.fr.stable.fun.FunctionHelper;
|
||
|
import com.fr.stable.fun.FunctionProcessor;
|
||
|
import com.fr.stable.fun.impl.AbstractFunctionProcessor;
|
||
|
|
||
|
/**
|
||
|
* Created by richie on 16/1/22.
|
||
|
*/
|
||
|
public class MyCellFunctionProcessor extends AbstractFunctionProcessor {
|
||
|
|
||
|
private static MyCellFunctionProcessor instance = new MyCellFunctionProcessor();
|
||
|
|
||
|
public static FunctionProcessor getInstance() {
|
||
|
return instance;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getId() {
|
||
|
return FunctionHelper.generateFunctionID(MyConstants.PLUGIN_ID);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getLocaleKey() {
|
||
|
return "Plugin-Highlight_Align";
|
||
|
}
|
||
|
}
|