Changeset 2418

Show
Ignore:
Timestamp:
08/21/08 12:15:33 (3 months ago)
Author:
huangb
Message:

clean up code

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/edu.iu.nwb.gui.brand/src/edu/iu/nwb/gui/brand/Activator.java

    r1620 r2418  
    11package edu.iu.nwb.gui.brand; 
    22 
    3 //import org.eclipse.jface.resource.ImageDescriptor; 
    43import java.io.IOException; 
    54import java.util.Properties; 
     
    2221        private BundleContext bContext; 
    2322        private boolean alreadyLogged; 
    24         private static final String nwb_greeting= 
    25                 "Welcome to the Network Workbench (NWB) tool that supports "+ 
    26                 "the preprocessing, modeling, analysis, and visualization of "+ 
    27                 "small, medium, and large networks. \n"+ 
    28                 "The Network Workbench project is supported in part by the NSF IIS-0513650 award. "+ 
    29                 "The primary investigators are Katy Börner, Albert-László Barabási, Santiago Schnell, "+ 
    30                 "Alessandro Vespignani, Stanley Wasserman, Eric A. Wernert, and Craig Stewart. "+ 
    31                 "The NWB tool was developed by Weixia (Bonnie) Huang, Dr. Santo Fortunato, "+ 
    32                 "Bruce Herr, Russell Duhon, Timothy Kelley, Micah Walter Linnemeier, Heng (Michael) Zhang, "+ 
    33                 "Duygu Balcan, M Felix Terkhorn, Cesar A. Hidalgo R., Ben Markines, Mariano Beiró, "+ 
    34         "Dr. Soma Sanyal, Ann McCranie, Megha Ramawat, Ramya Sabbineni, Vivek S. Thakres., "+ 
    35         "Dr. Alessandro Vespignani, and Dr. Katy Börner.\n"+ 
    36         "It builds on the Cyberinfrastructure Shell (http://cishell.org) developed at the "+ 
    37         "Information Visualization Laboratory and the Cyberinfrastructure for Network Science Center, "+ 
    38         "both at Indiana University.\n"+ 
    39         "For more information on the Network Workbench project, "+ 
    40         "see http://nwb.slis.indiana.edu and https://nwb.slis.indiana.edu/community/."; 
    41  
    4223         
    4324        /** 
     
    8162         
    8263        public void earlyStartup(){ 
    83                 //              TODO: Get log and print initial log blurb 
    84 /*        if (bContext != null) { 
    85                 ServiceReference ref = bContext.getServiceReference(LogService.class.getName()); 
    86              
    87             if (ref != null) { 
    88                 LogService logger = (LogService)bContext.getService(ref); 
    89                 logger.log(LogService.LOG_INFO, nwb_greeting); 
    90             }             
    91         } 
    92 */ 
     64 
    9365                if (bContext != null) { 
    9466            String greeting = null; 
     
    11486         
    11587        } 
    116  
    117         /** 
    118          * Returns an image descriptor for the image file at the given 
    119          * plug-in relative path 
    120          * 
    121          * @param path the path 
    122          * @return the image descriptor 
    123          */ 
    124 /*      public static ImageDescriptor getImageDescriptor(String path) { 
    125                 return imageDescriptorFromPlugin(PLUGIN_ID, path); 
    126         } 
    127 */       
    12888}