Examples of PublicEntitiesOnlyFilter


Examples of org.openquark.cal.filter.PublicEntitiesOnlyFilter

        logger.setUseParentHandlers(false);
       
        HTMLDocumentationGeneratorConfiguration config = new HTMLDocumentationGeneratorConfiguration(
            fileGenerator,
            new AcceptAllModulesFilter(),
            PUBLIC_ENTRIES_ONLY ? (ScopedEntityFilter)new PublicEntitiesOnlyFilter() : (ScopedEntityFilter)new AcceptAllScopedEntitiesFilter(),
            false,
            true,
            true,
            true,
            true,
View Full Code Here

Examples of org.openquark.cal.filter.PublicEntitiesOnlyFilter

     */
    private ScopedEntityFilter getScopedEntityFilter() {
        List<ScopedEntityFilter> scopedEntityFilterList = new ArrayList<ScopedEntityFilter>();
       
        if (shouldGeneratePublicEntriesOnly()) {
            scopedEntityFilterList.add(new PublicEntitiesOnlyFilter());
        }
       
        // Include the include-only filter if specified
        if (includeOnlyScopedEntityFilterCheckBox.isSelected()) {
            Object includeOnlyScopedEntityFilterFieldValue = includeOnlyScopedEntityFilterField.getEditor().getItem();
View Full Code Here

Examples of org.openquark.cal.filter.PublicEntitiesOnlyFilter

       
        if (publicEntitiesOnly) {
            // add the public-entries-only filter to the start of the list, since
            // this is a fast filter that has the potential to filter out a lot of entities
            // so it should be the first filter to be run
            scopedEntityFilterList.add(0, new PublicEntitiesOnlyFilter());
        }
       
        // create the module and scoped entity filters from the aggregated lists.
        ModuleFilter moduleFilter = CompositeModuleFilter.make(moduleFilterList);
        ScopedEntityFilter scopedEntityFilter = CompositeScopedEntityFilter.make(scopedEntityFilterList);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.