Package org.pentaho.reporting.libraries.pensol

Examples of org.pentaho.reporting.libraries.pensol.WebSolutionFileObject


                                                  final boolean isSelected,
                                                  final boolean cellHasFocus)
    {
      if (value instanceof WebSolutionFileObject)
      {
        final WebSolutionFileObject fo = (WebSolutionFileObject) value;
        final FileName fileName = fo.getName();
        try
        {
          return super.getListCellRendererComponent(list, fileName.getPathDecoded(), index, isSelected, cellHasFocus);
        }
        catch (FileSystemException e)
View Full Code Here


          glassPane.setCursor(new Cursor(Cursor.WAIT_CURSOR));
          final FileObject child = treeNode.resolveFile(newFolderDialog.getFolderName().replaceAll("\\%", "%25").replaceAll("\\!", "%21"));
          child.createFolder();
          if (child instanceof WebSolutionFileObject)
          {
            final WebSolutionFileObject webSolutionFileObject = (WebSolutionFileObject) child;
            webSolutionFileObject.setDescription(newFolderDialog.getDescription());
          }
          getTable().refresh();
        }
        catch (Exception e1)
        {
View Full Code Here

          glassPane.setVisible(true);
          glassPane.setCursor(new Cursor(Cursor.WAIT_CURSOR));
          final FileObject child = treeNode.resolveFile(newFolderDialog.getFolderName());
          if (child instanceof WebSolutionFileObject)
          {
            final WebSolutionFileObject webSolutionFileObject = (WebSolutionFileObject) child;
            webSolutionFileObject.setDescription(newFolderDialog.getDescription());
          }
          child.createFolder();
          repositoryTreeModel.fireTreeDataChanged();
          repositoryBrowser.setSelectionPath(selectionPath.getParentPath().pathByAddingChild(child));
          setDirty(true);
View Full Code Here

   * Creates a file object.  This method is called only if the requested
   * file is not cached.
   */
  protected FileObject createFile(final FileName name) throws Exception
  {
    return new WebSolutionFileObject(name, this, solutionFileModel);
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.libraries.pensol.WebSolutionFileObject

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.