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.
25 lines
469 B
25 lines
469 B
6 years ago
|
package com.fr.plugin.design;
|
||
|
|
||
|
import com.fr.design.fun.impl.AbstractPreviewProvider;
|
||
|
|
||
|
public class PreviewProviderImpl extends AbstractPreviewProvider {
|
||
|
@Override
|
||
|
public String nameForPopupItem() {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String iconPathForPopupItem() {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String iconPathForLarge() {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int previewTypeCode() {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|