Package altn8

Examples of altn8.AlternateGenericFileExtensionRegexItem


                result.add(fileMatcher);
            }
        }
        // freeRegexItems
        if (configuration.freeRegexActive) {
            AlternateFreeRegexFileMatcher fileMatcher = new AlternateFreeRegexFileMatcher(currentFilename, configuration);
            if (fileMatcher.canProcess()) {
                result.add(fileMatcher);
            }
        }
        return result;
    }
View Full Code Here


     */
    private List<AlternateFileMatcher> getFileMatchers(AlternateConfiguration configuration, String currentFilename) {
        List<AlternateFileMatcher> result = new ArrayList<AlternateFileMatcher>();
        // genericRegexActive (before freeRegexItems, because generic groups)
        if (configuration.genericRegexActive) {
            AlternateGenericRegexFileMatcher fileMatcher = new AlternateGenericRegexFileMatcher(currentFilename, configuration);
            if (fileMatcher.canProcess()) {
                result.add(fileMatcher);
            }
        }
        // freeRegexItems
        if (configuration.freeRegexActive) {
            AlternateFreeRegexFileMatcher fileMatcher = new AlternateFreeRegexFileMatcher(currentFilename, configuration);
            if (fileMatcher.canProcess()) {
                result.add(fileMatcher);
            }
        }
        return result;
    }
View Full Code Here

        return null;
    }

    public JComponent createComponent() {
        if (dataInterface == null) {
            dataInterface = new AlternateConfigurationPanel();
        }
        return dataInterface.getRootComponent();
    }
View Full Code Here

TOP

Related Classes of altn8.AlternateGenericFileExtensionRegexItem

Copyright © 2018 www.massapicom. 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.