Uses of Interface
org.craftercms.core.service.Context
-
-
Uses of Context in org.craftercms.core.processors
Methods in org.craftercms.core.processors with parameters of type Context Modifier and Type Method Description ItemItemProcessor. process(Context context, CachingOptions cachingOptions, Item item)Processes anItem. -
Uses of Context in org.craftercms.core.processors.impl
Methods in org.craftercms.core.processors.impl with parameters of type Context Modifier and Type Method Description protected ItemIncludeDescriptorsProcessor. getItemToInclude(Context context, CachingOptions cachingOptions, String includeSrcPath)protected voidIncludeDescriptorsProcessor. includeDescriptors(Context context, CachingOptions cachingOptions, Item item)ItemAbstractTaggingProcessor. process(Context context, CachingOptions cachingOptions, Item item)ItemAttributeAddingProcessor. process(Context context, CachingOptions cachingOptions, Item item)ItemFieldRenamingProcessor. process(Context context, CachingOptions cachingOptions, Item item)ItemIncludeDescriptorsProcessor. process(Context context, CachingOptions cachingOptions, Item item)Replaces special include tags found in a descriptor document with the document tree of descriptors specified in these include tags.ItemItemProcessorPipeline. process(Context context, CachingOptions cachingOptions, Item item)Processes the givenItem, by calling a pipeline of processors.ItemItemUrlTransformingProcessor. process(Context context, CachingOptions cachingOptions, Item item)ItemTextMetaDataCollectionExtractingProcessor. process(Context context, CachingOptions cachingOptions, Item item)For every XPath query provided inmetaDataNodesXPathQueries, a list of nodes is selected and for each one of these nodes its text value is extracted and added to a list that is later put in the item's properties.ItemTextMetaDataExtractingProcessor. process(Context context, CachingOptions cachingOptions, Item item)For every XPath query provided inmetaDataNodesXPathQueries, a single node is selected and its text value is extracted and put in the item's properties. -
Uses of Context in org.craftercms.core.processors.impl.template
Methods in org.craftercms.core.processors.impl.template with parameters of type Context Modifier and Type Method Description ItemTemplateProcessor. process(Context context, CachingOptions cachingOptions, Item item)Processes the content of certain nodes (found by theNodeScannerin the item's descriptor as templates, by compiling the node text templates through thetemplateCompilerand then processing the compiled template with a model returned bymodelFactory. -
Uses of Context in org.craftercms.core.service
Classes in org.craftercms.core.service that implement Context Modifier and Type Class Description classContextImplDefaultContextimplementation.Methods in org.craftercms.core.service that return Context Modifier and Type Method Description ContextContext. clone()ContextContextImpl. clone()ContextContentStoreService. getContext(String contextId)Returns the openContextfor the given ID, or null if no context found for the ID.ContextContentStoreService. getContext(String tag, String storeType, String rootFolderPath, boolean mergingOn, boolean cacheOn, int maxAllowedItemsInCache, boolean ignoreHiddenFiles)Returns a context with the specified parameters, if the context doesn't exist it will be created.Methods in org.craftercms.core.service with parameters of type Context Modifier and Type Method Description voidCacheService. addScope(Context context)Adds a new scope to the cache for the given context.voidCacheService. clearScope(Context context)Clears the contents of the scope of the given context.booleanContentStoreService. destroyContext(Context context)Destroys the specified context, login out of any remote repository (if a login was issued) and destroying the cache scope associated to the context.booleanContentStoreService. exists(Context context, String url)Returns true if the file or folder at the specified URL existsbooleanContentStoreService. exists(Context context, CachingOptions cachingOptions, String url)Returns true if the file or folder at the specified URL existsdefault List<Item>ContentStoreService. findChildren(Context context, String url)Returns the children of the folder at the given url, returning null if the folder can't be found.default List<Item>ContentStoreService. findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor)Returns the children of the folder at the given url, returning null if the folder can't be found.List<Item>ContentStoreService. findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)Returns the children of the folder at the given url, returning null if the folder can't be found.default ContentContentStoreService. findContent(Context context, String url)Returns the content of the file for the given url, returning null if not found.ContentContentStoreService. findContent(Context context, CachingOptions cachingOptions, String url)Returns the content of the file for the given url, returning null if not found.default ItemContentStoreService. findItem(Context context, String url)Returns the content store item for the given url, returning null if not found.default ItemContentStoreService. findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor)Returns the content store item for the given url, returning null if not found.ItemContentStoreService. findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten)Returns the content store item for the given url, returning null if not found.default TreeContentStoreService. findTree(Context context, String url)Returns the folder at the given url as a tree, or null if the folder wasn't found.default TreeContentStoreService. findTree(Context context, String url, int depth)Returns the folder at the given url as a tree, or null if the folder wasn't found.default TreeContentStoreService. findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor)Returns the folder at the given url as a tree, or null if the folder wasn't found.TreeContentStoreService. findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)Returns the folder at the given url as a tree, or null if the folder wasn't found.ObjectCacheService. get(Context context, Object key)Retrieves an item's value from the scope of the given context, or null if not found.default List<Item>ContentStoreService. getChildren(Context context, String url)Returns the children of the folder at the given url.default List<Item>ContentStoreService. getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor)Returns the children of the folder at the given url.List<Item>ContentStoreService. getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)Returns the children of the folder at the given url.default ContentContentStoreService. getContent(Context context, String url)Returns the content of the file for the given url.ContentContentStoreService. getContent(Context context, CachingOptions cachingOptions, String url)Returns the content of the file for the given url.CacheItemCacheService. getItem(Context context, Object key)Retrieves an item from the scope of the given context, or null if not found.default ItemContentStoreService. getItem(Context context, String url)Returns the content store item for the given url.default ItemContentStoreService. getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor)Returns the content store item for the given url.ItemContentStoreService. getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten)Returns the content store item for the given url.Collection<?>CacheService. getKeys(Context context)Returns a list of the keys of the items present in the scope of the given context.intCacheService. getSize(Context context)Returns the quantity of items present in scope of the given context.CacheStatisticsCacheService. getStatistics(Context context)Returns the statistics for the scope of the given context.default TreeContentStoreService. getTree(Context context, String url)Returns the folder at the given url as a tree.default TreeContentStoreService. getTree(Context context, String url, int depth)Returns the folder at the given url as a tree.default TreeContentStoreService. getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor)Returns the folder at the given url as a tree.TreeContentStoreService. getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)Returns the folder at the given url as a tree.booleanCacheService. hasKey(Context context, Object key)Returns true if there's and item with the specified key in the scope of the given context.booleanCacheService. hasScope(Context context)Returns true if the scope of the given context exists.voidCacheService. put(Context context, Object key, Object value)Puts an item in the scope of the given context.voidCacheService. put(Context context, Object key, Object value, CachingOptions cachingOptions, CacheLoader loader, Object... loaderParams)Puts and item in the scope of the given context.booleanCacheService. remove(Context context, Object key)Removes an item from the scope of the given context.voidCacheService. removeScope(Context context)Removes the scope associated to the given contextbooleanContentStoreService. validate(Context context)Returns true if the specified context is still valid and usable. -
Uses of Context in org.craftercms.core.service.impl
Fields in org.craftercms.core.service.impl with type parameters of type Context Modifier and Type Field Description protected Map<String,Context>ContentStoreServiceImpl. contextsMap of openContextsMethods in org.craftercms.core.service.impl that return Context Modifier and Type Method Description ContextContentStoreServiceImpl. getContext(String contextId)Returns the openContextfor the given ID, or null if no context found for the ID.ContextContentStoreServiceImpl. getContext(String tag, String storeType, String rootFolderPath, boolean mergingOn, boolean cacheOn, int maxAllowedItemsInCache, boolean ignoreHiddenFiles)Returns a context with the specified parameters, if the context doesn't exist it will be created.Methods in org.craftercms.core.service.impl with parameters of type Context Modifier and Type Method Description voidCacheServiceImpl. addScope(Context context)voidCacheServiceImpl. clearScope(Context context)booleanContentStoreServiceImpl. destroyContext(Context context)Destroys the specified context, login out of any remote repository (if a login was issued) and destroying the cache scope associated to the context.protected abstract booleanAbstractCachedContentStoreService. doExists(Context context, CachingOptions cachingOptions, String url)booleanContentStoreServiceImpl. doExists(Context context, CachingOptions cachingOptions, String url)protected abstract List<Item>AbstractCachedContentStoreService. doFindChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)protected List<Item>ContentStoreServiceImpl. doFindChildren(Context context, CachingOptions cachingOptions, String url, Integer depth, ItemFilter filter, ItemProcessor processor, boolean flatten)Does the following:protected List<Item>ContentStoreServiceImpl. doFindChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)protected abstract ItemAbstractCachedContentStoreService. doFindItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor)protected ItemContentStoreServiceImpl. doFindItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor)Returns the content store item for the given url, returning null if not found.protected abstract TreeAbstractCachedContentStoreService. doFindTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)protected TreeContentStoreServiceImpl. doFindTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)protected ItemContentStoreServiceImpl. doMerging(Context context, CachingOptions cachingOptions, Item item)Executes merging for the specifiedItem:protected ItemContentStoreServiceImpl. doProcessing(Context context, CachingOptions cachingOptions, Item item, ItemProcessor additionalProcessor)Executes processing for the specifiedItem:booleanAbstractCachedContentStoreService. exists(Context context, String url)booleanAbstractCachedContentStoreService. exists(Context context, CachingOptions cachingOptions, String url)List<Item>AbstractCachedContentStoreService. findChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)ContentContentStoreServiceImpl. findContent(Context context, CachingOptions cachingOptions, String url)ItemAbstractCachedContentStoreService. findItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten)TreeAbstractCachedContentStoreService. findTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)ObjectCacheServiceImpl. get(Context context, Object key)List<Item>AbstractCachedContentStoreService. getChildren(Context context, CachingOptions cachingOptions, String url, ItemFilter filter, ItemProcessor processor, boolean flatten)ContentContentStoreServiceImpl. getContent(Context context, CachingOptions cachingOptions, String url)Returns the content of the file for the given url.ItemAbstractCachedContentStoreService. getItem(Context context, CachingOptions cachingOptions, String url, ItemProcessor processor, boolean flatten)CacheItemCacheServiceImpl. getItem(Context context, Object key)Collection<?>CacheServiceImpl. getKeys(Context context)intCacheServiceImpl. getSize(Context context)CacheStatisticsCacheServiceImpl. getStatistics(Context context)TreeAbstractCachedContentStoreService. getTree(Context context, CachingOptions cachingOptions, String url, int depth, ItemFilter filter, ItemProcessor processor, boolean flatten)booleanCacheServiceImpl. hasKey(Context context, Object key)booleanCacheServiceImpl. hasScope(Context context)voidCacheServiceImpl. put(Context context, Object key, Object value)voidCacheServiceImpl. put(Context context, Object key, Object value, CachingOptions cachingOptions, CacheLoader loader, Object... loaderParams)booleanCacheServiceImpl. remove(Context context, Object key)voidCacheServiceImpl. removeScope(Context context)booleanContentStoreServiceImpl. validate(Context context) -
Uses of Context in org.craftercms.core.store
Methods in org.craftercms.core.store that return Context Modifier and Type Method Description ContextContentStoreAdapter. createContext(String id, String rootFolderPath, boolean mergingOn, boolean cacheOn, int maxAllowedItemsInCache, boolean ignoreHiddenFiles)Methods in org.craftercms.core.store with parameters of type Context Modifier and Type Method Description voidContentStoreAdapter. destroyContext(Context context)booleanContentStoreAdapter. exists(Context context, CachingOptions cachingOptions, String path)ContentContentStoreAdapter. findContent(Context context, CachingOptions cachingOptions, String path)ItemContentStoreAdapter. findItem(Context context, CachingOptions cachingOptions, String path, boolean withDescriptor)List<Item>ContentStoreAdapter. findItems(Context context, CachingOptions cachingOptions, String path)booleanContentStoreAdapter. validate(Context context) -
Uses of Context in org.craftercms.core.store.impl
Methods in org.craftercms.core.store.impl with parameters of type Context Modifier and Type Method Description protected abstract booleanAbstractCachedContentStoreAdapter. doExists(Context context, CachingOptions cachingOptions, String path)booleanAbstractFileBasedContentStoreAdapter. doExists(Context context, CachingOptions cachingOptions, String path)protected abstract ContentAbstractCachedContentStoreAdapter. doFindContent(Context context, CachingOptions cachingOptions, String path)protected ContentAbstractFileBasedContentStoreAdapter. doFindContent(Context context, CachingOptions cachingOptions, String path)protected abstract ItemAbstractCachedContentStoreAdapter. doFindItem(Context context, CachingOptions cachingOptions, String path, boolean withDescriptor)protected ItemAbstractFileBasedContentStoreAdapter. doFindItem(Context context, CachingOptions cachingOptions, String path, boolean withDescriptor)protected abstract List<Item>AbstractCachedContentStoreAdapter. doFindItems(Context context, CachingOptions cachingOptions, String path)protected List<Item>AbstractFileBasedContentStoreAdapter. doFindItems(Context context, CachingOptions cachingOptions, String path)booleanAbstractCachedContentStoreAdapter. exists(Context context, CachingOptions cachingOptions, String path)ContentAbstractCachedContentStoreAdapter. findContent(Context context, CachingOptions cachingOptions, String path)protected abstract FileAbstractFileBasedContentStoreAdapter. findFile(Context context, CachingOptions cachingOptions, String path)Returns theFileat the given path, returning null if not found.ItemAbstractCachedContentStoreAdapter. findItem(Context context, CachingOptions cachingOptions, String path, boolean withDescriptor)List<Item>AbstractCachedContentStoreAdapter. findItems(Context context, CachingOptions cachingOptions, String path)protected abstract List<File>AbstractFileBasedContentStoreAdapter. getChildren(Context context, CachingOptions cachingOptions, File dir)Returns the list of children of the given directory.protected abstract ContentAbstractFileBasedContentStoreAdapter. getContent(Context context, CachingOptions cachingOptions, File file)Returns theContentfor the given file. -
Uses of Context in org.craftercms.core.store.impl.filesystem
Classes in org.craftercms.core.store.impl.filesystem that implement Context Modifier and Type Class Description classFileSystemContextExtension of context that adds properties used by theFileSystemContentStoreAdapter.Methods in org.craftercms.core.store.impl.filesystem that return Context Modifier and Type Method Description ContextFileSystemContentStoreAdapter. createContext(String id, String rootFolderPath, boolean mergingOn, boolean cacheOn, int maxAllowedItemsInCache, boolean ignoreHiddenFiles)Methods in org.craftercms.core.store.impl.filesystem with parameters of type Context Modifier and Type Method Description voidFileSystemContentStoreAdapter. destroyContext(Context context)protected FileFileSystemContentStoreAdapter. findFile(Context context, CachingOptions cachingOptions, String path)protected List<File>FileSystemContentStoreAdapter. getChildren(Context context, CachingOptions cachingOptions, File dir)protected ContentFileSystemContentStoreAdapter. getContent(Context context, CachingOptions cachingOptions, File file)booleanFileSystemContentStoreAdapter. validate(Context context) -
Uses of Context in org.craftercms.core.url
Methods in org.craftercms.core.url with parameters of type Context Modifier and Type Method Description StringUrlTransformationEngine. transformUrl(Context context, String transformerName, String url)StringUrlTransformationEngine. transformUrl(Context context, CachingOptions cachingOptions, String transformerName, String url)StringUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url) -
Uses of Context in org.craftercms.core.url.impl
Methods in org.craftercms.core.url.impl with parameters of type Context Modifier and Type Method Description protected abstract StringAbstractCachedUrlTransformationEngine. doTransformUrl(Context context, CachingOptions cachingOptions, String transformerName, String url)protected StringUrlTransformationEngineImpl. doTransformUrl(Context context, CachingOptions cachingOptions, String transformerName, String url)protected StringShortToLongUrlTransformer. getLongName(Context context, CachingOptions cachingOptions, String folderPath, String shortName)protected StringShortToLongUrlTransformer. getLongUrl(Context context, CachingOptions cachingOptions, String shortUrl, boolean useShortNameIfLongNameNotFound)StringAbstractCachedUrlTransformationEngine. transformUrl(Context context, String transformerName, String url)StringAbstractCachedUrlTransformationEngine. transformUrl(Context context, CachingOptions cachingOptions, String transformerName, String url)StringAddContextPathUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringAddDebugParamUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringAddPrefixAndSuffixUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringAddSchemeAndDomainAndServerPortUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringAddServletPathUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringContentBundleShortToLongUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringExtractRequestAttributesUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringLongToShortUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringRemovePrefixAndSuffixUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringReplacePatternAllUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringReplaceSubstringUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringShortToLongUrlTransformer. transformUrl(Context context, CachingOptions cachingOptions, String url)StringUrlTransformerPipeline. transformUrl(Context context, CachingOptions cachingOptions, String url) -
Uses of Context in org.craftercms.core.util.cache
Methods in org.craftercms.core.util.cache with parameters of type Context Modifier and Type Method Description <T> TCacheTemplate. getObject(Context context, org.craftercms.commons.lang.Callback<T> callback, Object... keyElements)Executes the template, using the specified callback to load the object to cache, if it's not already in the cache.<T> TCacheTemplate. getObject(Context context, CachingOptions cachingOptions, org.craftercms.commons.lang.Callback<T> callback, Object... keyElements)Executes the template, using the specified callback to load the object to cache, if it's not already in the cache.booleanCacheTemplate. hasObject(Context context, Object... keyElements)Returns true if the cache contains an object for the specified key elements -
Uses of Context in org.craftercms.core.util.cache.impl
Methods in org.craftercms.core.util.cache.impl with parameters of type Context Modifier and Type Method Description protected <T> TDefaultCacheTemplate. doGet(Context context, org.craftercms.commons.lang.Callback<T> callback, Object key)protected <T> TDefaultCacheTemplate. doPut(Context context, CachingOptions cachingOptions, org.craftercms.commons.lang.Callback<T> callback, Object key, T obj)<T> TDefaultCacheTemplate. getObject(Context context, org.craftercms.commons.lang.Callback<T> callback, Object... keyElements)<T> TDefaultCacheTemplate. getObject(Context context, CachingOptions cachingOptions, org.craftercms.commons.lang.Callback<T> callback, Object... keyElements)booleanDefaultCacheTemplate. hasObject(Context context, Object... keyElements)protected <T> TDefaultCacheTemplate. loadAndPutInCache(Context context, CachingOptions cachingOptions, org.craftercms.commons.lang.Callback<T> callback, Object key)protected voidDefaultCacheTemplate. logGetFailure(Context context, org.craftercms.commons.lang.Callback<?> callback, Object key, Exception e)protected voidDefaultCacheTemplate. logPutFailure(Context context, org.craftercms.commons.lang.Callback<?> callback, Object key, Object obj, Exception e) -
Uses of Context in org.craftercms.core.xml.mergers
Methods in org.craftercms.core.xml.mergers with parameters of type Context Modifier and Type Method Description List<MergeableDescriptor>DescriptorMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)Returns the list of descriptors in the order they should be merged, given the URI of the primary descriptor.List<MergeableDescriptor>DescriptorMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)Returns the list of descriptors in the order they should be merged, given the URI of the primary descriptor. -
Uses of Context in org.craftercms.core.xml.mergers.impl.strategies
Methods in org.craftercms.core.xml.mergers.impl.strategies with parameters of type Context Modifier and Type Method Description protected abstract voidAbstractInheritFromHierarchyMergeStrategy. addInheritedDescriptorsInFolder(Context context, CachingOptions cachingOptions, List<MergeableDescriptor> inheritedDescriptors, String folder, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)protected voidCompositeInheritFromHierarchyMergeStrategy. addInheritedDescriptorsInFolder(Context context, CachingOptions cachingOptions, List<MergeableDescriptor> inheritedDescriptors, String folder, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)protected voidInheritLevelsMergeStrategy. addInheritedDescriptorsInFolder(Context context, CachingOptions cachingOptions, List<MergeableDescriptor> inheritedDescriptors, String folder, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)protected voidInheritVersionsMergeStrategy. addInheritedDescriptorsInFolder(Context context, CachingOptions cachingOptions, List<MergeableDescriptor> inheritedDescriptors, String folder, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)protected org.dom4j.DocumentContentBundleMergeStrategy. getDescriptorDom(Context context, CachingOptions cachingOptions, String url)protected org.dom4j.DocumentExplicitParentMergeStrategy. getDescriptorDom(Context context, CachingOptions cachingOptions, String url)List<MergeableDescriptor>AbstractInheritFromHierarchyMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)List<MergeableDescriptor>AbstractInheritFromHierarchyMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)List<MergeableDescriptor>ContentBundleMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)List<MergeableDescriptor>ContentBundleMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)List<MergeableDescriptor>ExplicitParentMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)List<MergeableDescriptor>ExplicitParentMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)List<MergeableDescriptor>SingleFileMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom)List<MergeableDescriptor>SingleFileMergeStrategy. getDescriptors(Context context, CachingOptions cachingOptions, String mainDescriptorUrl, org.dom4j.Document mainDescriptorDom, boolean mainDescriptorOptional)
-