Package de.offis.faint.interfaces

Examples of de.offis.faint.interfaces.IModule


  private IModule getActivePlugin(){
    return (IModule) this.hotSpot.getActivePlugin();
  }
 
  private void updateBody(){
    IModule plugin = this.getActivePlugin();
    String html = "";
    html += "<h2>Plugin Description</h2>" + plugin.getDescription() +"<br>";
    html += "<h2>Copyright Notes</h2>" + plugin.getCopyrightNotes() + "<br>";
    this.htmlPane.setText(html);
   
    Component view = null;
    htmlPane.setCaretPosition(0); // resets the scrollbars
    if (plugin instanceof ISwingCustomizable){
View Full Code Here


      body.setVisible(false);
      return;
    }
    body.setVisible(true);
   
    IModule mudule = (IModule) hotSpot.getAvailableFilters()[table.getSelectedRow()];

    String html = "";
    html += "<h2>Filter Description</h2>" + mudule.getDescription() +"<br>";
    html += "<h2>Copyright Notes</h2>" + mudule.getCopyrightNotes() + "<br>";
    this.htmlPane.setText(html);
   
    Component view = null;
    htmlPane.setCaretPosition(0); // resets the scrollbars
    if (mudule instanceof ISwingCustomizable){
View Full Code Here

TOP

Related Classes of de.offis.faint.interfaces.IModule

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.