Package com.xmultra.util

Examples of com.xmultra.util.Strings


     *
     * @return         An object which will contain the config.
     */
    GetMessage(InitMapHolder imh, File file, boolean validate) {

        this.strings = new Strings();

        // Get what we need from initMapHolder entries
        this.fileUtils = (FileUtils)imh.getEntry(InitMapHolder.FILE_UTILS);

        this.xmlParseUtils = (XmlParseUtils)imh.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here


        Node aProcessorNode = n;
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        strings = new Strings();
        dateUtils = new DateUtils(strings);

        // Get the directory where the file to process is found.
        srcLocation = getLocationDirectory(
                                     XmultraConfig.SRC_LOCATION_ELEMENT);
View Full Code Here

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        strings = new Strings();

        fileUtils = (FileUtils)initMapHolder.getEntry(InitMapHolder.FILE_UTILS);

        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        strings = new Strings();

        fileUtils = (FileUtils)initMapHolder.getEntry(InitMapHolder.FILE_UTILS);

        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here

        this.strings = (Strings)imh.getEntry(InitMapHolder.STRINGS);

        if (strings == null) {
            // Make a Strings instance.
            this.strings = new Strings();
            imh.setEntry(this, InitMapHolder.STRINGS, strings);
        }

        if ( !parseDestinationLocations(locationElementName) ) {
            return false;
View Full Code Here

        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        this.strings = new Strings();

        // Get the user.
        user = xmlParseUtils.getAttributeValueFromNode(aProcessorNode, XmultraConfig.USER_ATTRIBUTE);

        // Get the password.
View Full Code Here

        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        initMapHolder.setEntry(this, InitMapHolder.STRINGS, strings);

        // Get the number of retries.
        String noRetriesStr =   xmlParseUtils.getAttributeValueFromNode(
                                aProcessorNode, XmultraConfig.NUMBER_RETRIES);
View Full Code Here

        retrySyncFlag = new SyncFlag(false);
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create Strings instance and add it to the InitMapHolder.
        strings = new Strings();
        imh.setEntry(this, InitMapHolder.STRINGS, strings);

        // Get the directory to move a file to after processing it.
        srcDoneLocFile = getLocationDirectory(
                XmultraConfig.SRC_DONE_LOCATION_ELEMENT);
View Full Code Here

        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        strings = new Strings();

        fileUtils = (FileUtils)initMapHolder.getEntry(InitMapHolder.FILE_UTILS);

        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here

        Node aProcessorNode = n;
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Make a Strings instance.
        this.strings = new Strings();
        imh.setEntry(this, InitMapHolder.STRINGS, strings);

        fileUtils = (FileUtils)initMapHolder.getEntry(InitMapHolder.FILE_UTILS);

        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(InitMapHolder.XML_PARSE_UTILS);
View Full Code Here

TOP

Related Classes of com.xmultra.util.Strings

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.