class WirisPlugin::PluginBuilder

Constants

pb

Public Class Methods

getInstance() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 17
def self.getInstance()
    if PluginBuilder::pb == nil
        PluginBuilder::pb = PluginBuilderImpl.new()
    end
    return PluginBuilder::pb
end
new() click to toggle source
Calls superclass method
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 14
def initialize()
    super()
end
newInstance() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 23
def self.newInstance()
    return PluginBuilderImpl.new()
end
pb() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 8
def self.pb
    @@pb
end
pb=(pb) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 11
def self.pb=(pb)
    @@pb = pb
end

Public Instance Methods

addConfigurationUpdater(conf) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 26
def addConfigurationUpdater(conf)
end
addCorsHeaders(response, origin) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 63
def addCorsHeaders(response, origin)
end
getAccessProvider() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 87
def getAccessProvider()
    return nil
end
getConfiguration() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 42
def getConfiguration()
    return nil
end
getCustomParamsProvider() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 82
def getCustomParamsProvider()
    return nil
end
getImageFormatController() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 74
def getImageFormatController()
    return nil
end
getStorageAndCache() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 45
def getStorageAndCache()
    return nil
end
isEditorLicensed() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 71
def isEditorLicensed()
    return false
end
newAsyncRender() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 33
def newAsyncRender()
    return nil
end
newAsyncTextService() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 39
def newAsyncTextService()
    return nil
end
newCas() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 57
def newCas()
    return nil
end
newCleanCache() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 65
def newCleanCache()
    return nil
end
newEditor() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 60
def newEditor()
    return nil
end
newGenericParamsProvider(properties) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 77
def newGenericParamsProvider(properties)
    return nil
end
newRender() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 30
def newRender()
    return nil
end
newResourceLoader() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 68
def newResourceLoader()
    return nil
end
newTest() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 54
def newTest()
    return nil
end
newTextService() click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 36
def newTextService()
    return nil
end
setAccessProvider(provider) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 85
def setAccessProvider(provider)
end
setCustomParamsProvider(provider) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 80
def setCustomParamsProvider(provider)
end
setStorageAndCache(store) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 28
def setStorageAndCache(store)
end
setStorageAndCacheCacheFormulaObject(cache) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 52
def setStorageAndCacheCacheFormulaObject(cache)
end
setStorageAndCacheCacheObject(cache) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 50
def setStorageAndCacheCacheObject(cache)
end
setStorageAndCacheInitObject(obj) click to toggle source
# File lib/com/wiris/plugin/api/PluginBuilder.rb, line 48
def setStorageAndCacheInitObject(obj)
end