Examples of MessageLogEntry


Examples of com.xmultra.log.MessageLogEntry

    public FileUtils(Logger log, String root) {

        // Set/create the log references.
        logger = log;
        errEntry = new ErrorLogEntry(this, VERSION);
        msgEntry = new MessageLogEntry(this, VERSION);

        // Set the root directory.
        xmultraRootDir = new File(root).toString();
    }
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

                        stopFlag)) {
            return false;
        }

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

        // Make a Strings instance.
        strings = new Strings();
        dateUtils = new DateUtils(strings);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        managerNode = mgrNode;
        startingManagersSyncFlag = mgrsStartingSyncFlag;
        initSuccess = false;
        noProcessorStop = false;
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Create a new InitMapHolder.
        initMapHolder = new InitMapHolder();
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

     * @return True if  init was successful.
     */
    public boolean init (Node n, InitMapHolder imh, SyncFlag sf, SyncFlag stopFlag) {

        if (!super.init(n, imh, sf, stopFlag)) return false;
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Get the Mode value from the CopyProcessor element.
        String mode = super.xmlParseUtils.getAttributeValueFromNode(
                aProcessorNode, XmultraConfig.MODE);
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

     */
    public CallbackRegistry(Manager man, Logger log) {
        manager = man;
        managerList.addElement(man);
        logger = log;
        msgEntry = new MessageLogEntry(this, VERSION);
    }
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        Node aProcessorNode = n;

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

        // Make a Strings instance.
        strings = new Strings();
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        // Get the ErrorLog reference.
        logger = log;

        errEntry = new ErrorLogEntry(this, VERSION);

        msgEntry = new MessageLogEntry(this, VERSION);

        domParser = new DOMParser();

        domPrinter = new DOMPrinter();
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

        if (!super.init(n, imh, sf, stopFlag)) return false;

        Node aProcessorNode = n;

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

        // Make a Strings instance.
        strings = new Strings();
View Full Code Here

Examples of com.xmultra.log.MessageLogEntry

    public boolean init (Node n, InitMapHolder imh,
                         SyncFlag sf, SyncFlag stopFlag) {

        if (!super.init(n, imh, sf, stopFlag)) return false;

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

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

Examples of com.xmultra.log.MessageLogEntry

        // Get the Logger reference.
        logger = (Logger)initMapHolder.getEntry(InitMapHolder.LOGGER);

        // Create the log entry objects.
        msgEntry = new MessageLogEntry(this, VERSION);
        errEntry = new ErrorLogEntry(this, VERSION);

        // Get the XmlParseUtils reference.
        xmlParseUtils = (XmlParseUtils)initMapHolder.getEntry(
                            InitMapHolder.XML_PARSE_UTILS);
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.