Changeset 18260 for greenstone3/trunk


Ignore:
Timestamp:
2008-12-18T16:52:46+13:00 (15 years ago)
Author:
cc108
Message:

remove unused variables and rename several classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • greenstone3/trunk/src/java/org/greenstone/admin/gui/Mat.java

    r18258 r18260  
    630630
    631631    public void downloadExtension(){
    632     SVNDownloadThread download = new SVNDownloadThread(adaptee, ExtPane.message_textarea ,adaptee.url, adaptee.destination_folder, adaptee.extension_name);
     632    MatSVNDownloadThread download = new MatSVNDownloadThread(adaptee, ExtPane.message_textarea ,adaptee.url, adaptee.destination_folder, adaptee.extension_name);
    633633    download.start();
    634634    }
    635635
    636636    public void installExtension(){
    637     ExtensionInstallation ei = new ExtensionInstallation(adaptee);
     637    MatExtensionInstallation ei = new MatExtensionInstallation(adaptee);
    638638    ei.start();
    639639    adaptee.description_control_button.setEnabled(adaptee.getCommandStatus("install"));
     
    644644    if(!buildProperty.exists()) { return; }
    645645    Object[][] temp = adaptee.getConfiguration(adaptee.install_options_filePath);
    646     ExtensionConfigurePrompt ecp = new ExtensionConfigurePrompt(temp,adaptee.install_options_filePath,adaptee.extension_name,"Configure Install Settings");
     646    MatExtensionConfigurePrompt ecp = new MatExtensionConfigurePrompt(temp,adaptee.install_options_filePath,adaptee.extension_name,"Configure Install Settings");
    647647    ecp.display();
    648648    }
     
    653653    if(!buildProperty.exists()) { return; }
    654654    Object[][] temp = adaptee.getConfiguration(adaptee.extension_runtimeProperty_path);
    655     ExtensionConfigurePrompt ecp = new ExtensionConfigurePrompt(temp,adaptee.extension_runtimeProperty_path,adaptee.extension_name,"Configure Runtime Settings");
     655    MatExtensionConfigurePrompt ecp = new MatExtensionConfigurePrompt(temp,adaptee.extension_runtimeProperty_path,adaptee.extension_name,"Configure Runtime Settings");
    656656    ecp.display();
    657657    }
    658658   
    659659    public void execute_application(){
    660     LaunchApplication app = new LaunchApplication(adaptee);
     660    MatLaunchApplication app = new MatLaunchApplication(adaptee);
    661661    app.start();
    662662    }
Note: See TracChangeset for help on using the changeset viewer.