Package com.xmultra.util

Examples of com.xmultra.util.NameSelector


        this.maximumFileAgeMilliseconds =
            calculateMaximumFileAge(this.maxFileAge, this.maxFileAgeUnits);

        // Inclusion or exclusion for source files
        this.nameSelector =
            new NameSelector(this.getSrcLocationNode, this.initMapHolder);

       return true;
   }
View Full Code Here


        throws IOException, MalformedURLException, UnknownHostException {

        String fileString = null;

        // Inclusion or exclusion for source files
        NameSelector myNameSelector =
            new NameSelector(this.sourceLocationNode, initMapHolder);

        // If exclusion, just ignore it
        if (!myNameSelector.isIncluded(this.srcFile)) {
            return fileString;
        }
        // URL connection and get information from there
        URL myURL = new URL(url);
View Full Code Here

        Node destinationLocationNode = xmlParseUtils.getChildNode(locationNode,
                XmultraConfig.DEST_LOCATION_ELEMENT);

        // Now make a NameSelector which will check to see if a filename
        // of an extracted file is included or excluded.
        this.nameSelector = new NameSelector(destinationLocationNode,
                                             initMapHolder);

        // Successful init.
        return true;
    }
View Full Code Here

        Node destinationLocationNode = xmlParseUtils.getChildNode(locationNode,
                XmultraConfig.DEST_LOCATION_ELEMENT);

        // Now make a NameSelector which will check to see if a filename
        // of an extracted file is included or excluded.
        this.nameSelector = new NameSelector(destinationLocationNode,
                                             initMapHolder);

        // Get the name of the base document file to be used for the merge.
        baseDocumentFileName = rssMergeEl.getAttribute(XmultraConfig.BASE_DOCUMENT);
View Full Code Here

        Node destinationLocationNode = xmlParseUtils.getChildNode(locationNode,
                XmultraConfig.DEST_LOCATION_ELEMENT);

        // Now make a NameSelector which will check to see if a filename
        // of an extracted file is included or excluded.
        this.nameSelector = new NameSelector(destinationLocationNode,
                                             initMapHolder);

        // Successful init.
        return true;
    }
View Full Code Here

TOP

Related Classes of com.xmultra.util.NameSelector

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.