forked from neil/plugin-external-background
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.
31 lines
756 B
31 lines
756 B
package com.fr.plugin.external; |
|
|
|
import com.fr.web.struct.AssembleComponent; |
|
import com.fr.web.struct.Atom; |
|
import com.fr.web.struct.Registry; |
|
import com.fr.web.struct.browser.RequestClient; |
|
import com.fr.web.struct.category.ScriptPath; |
|
|
|
public class EngineTestComponent extends AssembleComponent { |
|
|
|
public static final EngineTestComponent KEY = new EngineTestComponent(); |
|
|
|
private EngineTestComponent() { |
|
|
|
} |
|
|
|
@Override |
|
public Atom[] refer() { |
|
return new Atom[0]; |
|
} |
|
|
|
@Override |
|
public ScriptPath script(RequestClient req) { |
|
return ScriptPath.build("/com/fr/nx/web/ui/show.debug1.js"); |
|
} |
|
|
|
@Override |
|
public Atom[] children() { |
|
return Registry.getChildren(EngineTestComponent.class); |
|
} |
|
}
|
|
|