Package net.xeoh.plugins.informationbroker.standarditems.strings

Examples of net.xeoh.plugins.informationbroker.standarditems.strings.StringID


     * @see de.dfki.km.augmentedtext.browserplugin.services.sessionrecorder.SessionRecorder#start()
     */
    @Override
    public void start() {
        // Obtain the session dir (should have been set by now)
        this.sessionDir = this.infoBroker.getInformationItem(new StringID("global:sessionDir")).getContent();

        // Create sessiondir
        new File(this.sessionDir).mkdirs();

        // Only set started if we were successful.
View Full Code Here


    @Override
    public void start() {

        // Obtain the session dir (should have been set by now)
        // Return the session dir
        this.sessionDir = new InformationBrokerUtil(this.infoBroker).getItem(new StringID("global:sessionDir"), "/tmp/");

        // Create sessiondir
        new File(this.sessionDir).mkdirs();

        // Create streamer
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.informationbroker.standarditems.strings.StringID

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.