org.pentaho.platform.api.ui
Interface IFileTypePlugin

All Known Implementing Classes:
FileTypePlugin

public interface IFileTypePlugin

This interface defines a file type plugin, which specifies the behavior for viewing and editing specific file types

Author:
Will Gorman (wgorman@pentaho.com)

Method Summary
 String getEditUrlPattern()
          return the edit url pattern.
 String getEnabledOptions()
          return a comma separated list of commands supported by this plugin
 String getFileExtension()
          return the file extension this plugin supports
 String getOpenUrlPattern()
          return the open url pattern.
 

Method Detail

getFileExtension

String getFileExtension()
return the file extension this plugin supports

Returns:
file extension

getEnabledOptions

String getEnabledOptions()
return a comma separated list of commands supported by this plugin

Returns:
enabled options

getOpenUrlPattern

String getOpenUrlPattern()
return the open url pattern. parameterized values include: {solution} {path} {name}

Returns:
open url pattern.

getEditUrlPattern

String getEditUrlPattern()
return the edit url pattern. parameterized values include: {solution} {path} {name}

Returns:
edit url pattern.