GraphLab Project

graphlab.platform.extension
Annotation Type ExtensionExternalData


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface ExtensionExternalData

Provides some information about the extension

Author:
azin azadi
See Also:
Extension

Required Element Summary
 java.lang.String helpURL
          a URL which locates a help for extension, the help will provide more information about what extension does and how it can be used, it also can contain some theoreticall aspects of extension, how it is implemented and so on.
 java.lang.String sourceCodeURL
          a URL which locates the source code for the extension, it will be then accessible by the user.
 

Element Detail

helpURL

public abstract java.lang.String helpURL
a URL which locates a help for extension, the help will provide more information about what extension does and how it can be used, it also can contain some theoreticall aspects of extension, how it is implemented and so on.


sourceCodeURL

public abstract java.lang.String sourceCodeURL
a URL which locates the source code for the extension, it will be then accessible by the user.

this field will be setted on extension load automatically if it hasn't been setted, on this case it will be locate the file of extension. automatically setting the sourceCodeURL will be done only when the extension source code is not a .class file.

See Also:
ExtensionLoader

GraphLab Project