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.
26 lines
549 B
26 lines
549 B
package com.fr.plugin.design; |
|
|
|
import com.fr.design.fun.impl.AbstractFormWidgetOptionProvider; |
|
import com.fr.form.ui.Widget; |
|
|
|
public class FormWidgetOptionProviderImpl extends AbstractFormWidgetOptionProvider { |
|
@Override |
|
public Class<? extends Widget> classForWidget() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public Class<?> appearanceForWidget() { |
|
return null; |
|
} |
|
|
|
@Override |
|
public String iconPathForWidget() { |
|
return ""; |
|
} |
|
|
|
@Override |
|
public String nameForWidget() { |
|
return ""; |
|
} |
|
} |