Package org.eobjects.analyzer.storage

Examples of org.eobjects.analyzer.storage.StorageProvider


        WidgetUtils.addToGridBag(new JLabel("" + numThreads), panel, 1, row);
      }
    }

    row++;
    StorageProvider storageProvider = _configuration.getStorageProvider();
    WidgetUtils.addToGridBag(new JLabel("Storage provider type:"), panel, 0, row);
    WidgetUtils.addToGridBag(new JLabel(storageProvider.getClass().getSimpleName()), panel, 1, row);
    WidgetUtils
        .addToGridBag(
            new HelpIcon(
                "The storage provider is used for staging data during and after analysis, typically to store the results on disk in stead of holding everything in memory."),
            panel, 2, row);
View Full Code Here

TOP

Related Classes of org.eobjects.analyzer.storage.StorageProvider

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.