Changeset 5612 for trunk/src/clients/web
- Timestamp:
- Apr 18, 2011, 1:23:57 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/clients/web/net/sf/basedb/clients/web/plugins/SimpleExport.java
r5481 r5612 46 46 import net.sf.basedb.core.Type; 47 47 import net.sf.basedb.core.Unit; 48 import net.sf.basedb.core.Version;49 48 50 49 import net.sf.basedb.core.Job.ExecutionTime; … … 52 51 import net.sf.basedb.core.data.RawData; 53 52 import net.sf.basedb.core.data.ReporterListScoreData; 54 import net.sf.basedb.core.plugin.About;55 import net.sf.basedb.core.plugin.AboutImpl;56 53 import net.sf.basedb.core.plugin.AbstractExporterPlugin; 57 54 import net.sf.basedb.core.plugin.ExportOutputStream; … … 100 97 { 101 98 102 /**103 Plugin description104 */105 private static final About about =106 new AboutImpl107 (108 "Table exporter",109 "Export all table listings in the web interface as tab-separated text files " +110 "or as XML. This plugin only works from within the web client, since it depends " +111 "on context and table information.",112 Version.getMajor() + "." + Version.getMinor() + "." + Version.getMaintenance(),113 "2006, Base 2 development team",114 null,115 null,116 "http://base.thep.lu.se"117 );118 119 99 private static final Set<GuiContext> guiContexts = new HashSet<GuiContext>(); 120 100 private RequestInformation configureJob; … … 126 106 ------------------------------------------- 127 107 */ 128 public About getAbout()129 {130 return about;131 }132 108 public Plugin.MainType getMainType() 133 109 {
Note: See TracChangeset
for help on using the changeset viewer.