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.
22 lines
464 B
22 lines
464 B
package com.fr.design.formula; |
|
|
|
public class CustomVariableResolver extends VariableResolverAdapter { |
|
private String[] columnNames; |
|
private boolean isBindCell; |
|
|
|
public CustomVariableResolver(String[] columnNames, boolean isBindCell) { |
|
this.columnNames = columnNames; |
|
this.isBindCell = isBindCell; |
|
} |
|
|
|
@Override |
|
public String[] resolveColumnNames() { |
|
return this.columnNames; |
|
} |
|
|
|
@Override |
|
public boolean isBindCell() { |
|
return this.isBindCell; |
|
} |
|
|
|
} |