Package org.freeplane.plugin.script.ScriptEditorPanel

Examples of org.freeplane.plugin.script.ScriptEditorPanel.ScriptHolder


      return mScript;
    }

    @Override
        public ScriptHolder getScript(final int pIndex) {
      return new ScriptHolder("Script", mScript);
    }
View Full Code Here


      return mScripts.size();
    }

    public ScriptHolder getScript(final int pIndex) {
      final Attribute attribute = ((AttributeHolder) mScripts.get(pIndex)).mAttribute;
      return new ScriptHolder(attribute.getName(), attribute.getValue().toString());
    }
View Full Code Here

TOP

Related Classes of org.freeplane.plugin.script.ScriptEditorPanel.ScriptHolder

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.