|
|
@ -1,7 +1,6 @@ |
|
|
|
package com.fr.design.mainframe.theme; |
|
|
|
package com.fr.design.mainframe.theme; |
|
|
|
|
|
|
|
|
|
|
|
import com.fr.workspace.WorkContext; |
|
|
|
import com.fr.workspace.WorkContext; |
|
|
|
import com.fr.workspace.server.theme.SupportThemedCellInnerBorderFeature; |
|
|
|
|
|
|
|
import com.fr.workspace.server.theme.ThemedCellBorderFeature; |
|
|
|
import com.fr.workspace.server.theme.ThemedCellBorderFeature; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -12,6 +11,6 @@ import com.fr.workspace.server.theme.ThemedCellBorderFeature; |
|
|
|
public class ThemedFeatureController { |
|
|
|
public class ThemedFeatureController { |
|
|
|
public static boolean isCellStyleSupportInnerBorder() { |
|
|
|
public static boolean isCellStyleSupportInnerBorder() { |
|
|
|
ThemedCellBorderFeature controller = WorkContext.getCurrent().get(ThemedCellBorderFeature.class); |
|
|
|
ThemedCellBorderFeature controller = WorkContext.getCurrent().get(ThemedCellBorderFeature.class); |
|
|
|
return controller instanceof SupportThemedCellInnerBorderFeature; |
|
|
|
return controller.isSupport(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|